From b6c056c5ca7c8c705807a65a665f6af28ab8ee7a Mon Sep 17 00:00:00 2001 From: Taeyeon Mori Date: Fri, 18 Oct 2024 18:30:44 +0200 Subject: [PATCH] python/steamutil: fix platform_override --- lib/python/steamutil.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/python/steamutil.py b/lib/python/steamutil.py index ac6eb37..19f93e8 100644 --- a/lib/python/steamutil.py +++ b/lib/python/steamutil.py @@ -135,7 +135,7 @@ class App(AppInfo): # Steam Play info @property def platform_override(self) -> Tuple[Optional[str], Optional[str]]: - uc = dd_getpath(self.manifest, ("AppState", "UserConfig"), None, t=Dict[str, str]) + uc = dd_getpath(self.manifest, ("AppState", "UserConfig"), None, t=dict) if uc: return uc.get("platform_override_source", None), uc.get("platform_override_dest", None) return None, None