mirror of
https://github.com/283375/arcaea-offline.git
synced 2025-07-02 04:36:26 +00:00
fix: ruff F401 warnings
This commit is contained in:
@ -1 +1,3 @@
|
||||
from .db import Database
|
||||
|
||||
__all__ = ["Database"]
|
||||
|
@ -19,3 +19,24 @@ from .songs import (
|
||||
SongsBase,
|
||||
SongsViewBase,
|
||||
)
|
||||
|
||||
__all__ = [
|
||||
"CalculatedPotential",
|
||||
"Chart",
|
||||
"ChartInfo",
|
||||
"ConfigBase",
|
||||
"Difficulty",
|
||||
"DifficultyLocalized",
|
||||
"Pack",
|
||||
"PackLocalized",
|
||||
"Property",
|
||||
"Score",
|
||||
"ScoreBest",
|
||||
"ScoreCalculated",
|
||||
"ScoresBase",
|
||||
"ScoresViewBase",
|
||||
"Song",
|
||||
"SongLocalized",
|
||||
"SongsBase",
|
||||
"SongsViewBase",
|
||||
]
|
||||
|
@ -10,12 +10,12 @@ from .common import ReprHelper
|
||||
from .songs import ChartInfo, Difficulty
|
||||
|
||||
__all__ = [
|
||||
"ScoresBase",
|
||||
"Score",
|
||||
"ScoresViewBase",
|
||||
"ScoreCalculated",
|
||||
"ScoreBest",
|
||||
"CalculatedPotential",
|
||||
"Score",
|
||||
"ScoreBest",
|
||||
"ScoreCalculated",
|
||||
"ScoresBase",
|
||||
"ScoresViewBase",
|
||||
]
|
||||
|
||||
|
||||
|
@ -9,16 +9,16 @@ from sqlalchemy_utils import create_view
|
||||
from .common import ReprHelper
|
||||
|
||||
__all__ = [
|
||||
"SongsBase",
|
||||
"Chart",
|
||||
"ChartInfo",
|
||||
"Difficulty",
|
||||
"DifficultyLocalized",
|
||||
"Pack",
|
||||
"PackLocalized",
|
||||
"Song",
|
||||
"SongLocalized",
|
||||
"Difficulty",
|
||||
"DifficultyLocalized",
|
||||
"ChartInfo",
|
||||
"SongsBase",
|
||||
"SongsViewBase",
|
||||
"Chart",
|
||||
]
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user