From 718fa21c6604cafc05fc42a391b02adb89528572 Mon Sep 17 00:00:00 2001 From: Corban-Lee Jones Date: Mon, 9 Dec 2024 01:58:16 +0000 Subject: [PATCH] Update models.py --- utils/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/models.py b/utils/models.py index 365d928..e8b80c1 100644 --- a/utils/models.py +++ b/utils/models.py @@ -91,7 +91,7 @@ class Player(Model): 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: """