Skip to content

Commit

Permalink
fix: Export singleplayer stats keys from package root
Browse files Browse the repository at this point in the history
  • Loading branch information
cetteup committed Sep 10, 2023
1 parent 38c24d7 commit d7a828f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pybfbc2stats/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from .client import FeslClient, TheaterClient
from .connection import Connection, SecureConnection
from .constants import Platform, Namespace, DEFAULT_LEADERBOARD_KEYS, STATS_KEYS, GENERAL_STATS_KEYS, WEAPON_STATS_KEYS, \
VEHICLE_STATS_KEYS, SERVICE_STARS_STATS_KEYS, AWARDS_STATS_KEYS
VEHICLE_STATS_KEYS, SERVICE_STARS_STATS_KEYS, AWARDS_STATS_KEYS, SINGLEPLAYER_STATS_KEYS
from .exceptions import Error, TimeoutError, ParameterError, \
PlayerNotFoundError, AuthError, ConnectionError, SearchError, \
NotFoundError, ServerNotFoundError, LobbyNotFoundError, RecordNotFoundError
Expand All @@ -19,7 +19,7 @@
__all__ = ['Connection', 'SecureConnection', 'FeslClient', 'TheaterClient',
'AsyncConnection', 'AsyncSecureConnection', 'AsyncFeslClient', 'AsyncTheaterClient',
'Platform', 'Namespace', 'DEFAULT_LEADERBOARD_KEYS', 'STATS_KEYS', 'GENERAL_STATS_KEYS', 'WEAPON_STATS_KEYS',
'VEHICLE_STATS_KEYS', 'SERVICE_STARS_STATS_KEYS', 'AWARDS_STATS_KEYS',
'VEHICLE_STATS_KEYS', 'SERVICE_STARS_STATS_KEYS', 'AWARDS_STATS_KEYS', 'SINGLEPLAYER_STATS_KEYS',
'Error', 'ConnectionError', 'ParameterError', 'TimeoutError',
'AuthError', 'NotFoundError', 'PlayerNotFoundError', 'RecordNotFoundError',
'ServerNotFoundError', 'LobbyNotFoundError', 'SearchError']

0 comments on commit d7a828f

Please sign in to comment.