Ongeki: fixed missing await under get_tech_count

This commit is contained in:
Midorica 2024-05-01 07:57:21 -04:00
parent d5c80cfb0f
commit 4c33dac96a

View File

@ -131,7 +131,7 @@ class OngekiScoreData(BaseData):
async def get_tech_count(self, aime_id: int) -> Optional[List[Dict]]:
sql = select(tech_count).where(tech_count.c.user == aime_id)
result = self.execute(sql)
result = await self.execute(sql)
if result is None:
return None