8 lines
239 B
Python
8 lines
239 B
Python
"""PlayerSeasonStats ORM model.
|
|
|
|
Model is defined in db_engine alongside all other Peewee models; this
|
|
module re-exports it so callers can import from `app.models.season_stats`.
|
|
"""
|
|
|
|
from ..db_engine import PlayerSeasonStats # noqa: F401
|