ongeki: add missing await

This commit is contained in:
zaphkito 2024-04-25 14:47:38 +00:00
parent 47f288fe2d
commit 4964a57b66
1 changed files with 1 additions and 1 deletions

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