Code cleanup: standardized imports, refined formatting for consistency, and resolved minor redundancies in services, models, monitoring, and tools modules.
This commit is contained in:
parent
e486d78e31
commit
ec0fe38861
39 changed files with 222 additions and 239 deletions
|
|
@ -1,12 +1,13 @@
|
|||
"""Data models for GeoGuessr."""
|
||||
|
||||
from .UserProfile import UserProfile
|
||||
from .UserStats import UserStats
|
||||
from .RoundGuess import RoundGuess
|
||||
from Game import Game
|
||||
from Achievement import Achievement
|
||||
from SeasonStats import SeasonStats
|
||||
from DailyChallenge import DailyChallenge
|
||||
from Game import Game
|
||||
from SeasonStats import SeasonStats
|
||||
|
||||
from .RoundGuess import RoundGuess
|
||||
from .UserProfile import UserProfile
|
||||
from .UserStats import UserStats
|
||||
|
||||
__all__ = [
|
||||
"UserProfile",
|
||||
|
|
@ -16,4 +17,4 @@ __all__ = [
|
|||
"Achievement",
|
||||
"SeasonStats",
|
||||
"DailyChallenge",
|
||||
]
|
||||
]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue