Refactor imports and standardize file naming: update module imports for consistency, align filenames with snake_case convention, and extract DynamicResponse to a dedicated module.
This commit is contained in:
parent
126d04ab0f
commit
bf5d1b890a
22 changed files with 160 additions and 145 deletions
|
|
@ -7,11 +7,8 @@ Handles game history, details, and competitive data with dynamic schema support.
|
|||
import logging
|
||||
from typing import Optional
|
||||
|
||||
from ..api.client import DynamicResponse, GeoGuessrClient
|
||||
from ..api.endpoints import Endpoints
|
||||
from ..models.DailyChallenge import DailyChallenge
|
||||
from ..models.Game import Game
|
||||
from ..models.SeasonStats import SeasonStats
|
||||
from ..api import Endpoints, DynamicResponse, GeoGuessrClient
|
||||
from ..models import DailyChallenge, Game, SeasonStats
|
||||
|
||||
logger = logging.getLogger(__name__)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue