FGO #11

Closed
FGO wants to merge 50 commits from (deleted):idac into develop
1 changed files with 3 additions and 1 deletions
Showing only changes of commit 74a671aff5 - Show all commits

View File

@ -810,7 +810,9 @@ class IDACItemData(BaseData):
# This method returns a list of course_info
def get_vs_course_infos_by_mode(self, aime_id: int, battle_mode: int) -> Optional[List[Row]]:
sql = select(vs_course_info).where(vs_course_info.c.user == aime_id, vs_course_info.c.battle_mode == battle_mode)
sql = select(vs_course_info).where(
and_(vs_course_info.c.user == aime_id, vs_course_info.c.battle_mode == battle_mode)
)
result = self.execute(sql)
if result is None: