Update models.py
All checks were successful
Build and Push Docker Image / build (push) Successful in 16s

This commit is contained in:
Corban-Lee Jones 2024-12-09 01:58:16 +00:00
parent 61af1b937f
commit 718fa21c66

View File

@ -91,7 +91,7 @@ class Player(Model):
async def get_steam_summary(self) -> SteamProfileSummary | None: async def get_steam_summary(self) -> SteamProfileSummary | None:
""" """
""" """
return SteamProfileSummary.get_or_none(player=self) return await SteamProfileSummary.get_or_none(player=self)
async def update_steam_summary(self, steam_id: str | int, steam_api_key: str) -> SteamProfileSummary: async def update_steam_summary(self, steam_id: str | int, steam_api_key: str) -> SteamProfileSummary:
""" """