From 9570d0b0c21fda8eb85d9fe297681633349b3803 Mon Sep 17 00:00:00 2001 From: AAGaming Date: Sat, 3 Aug 2024 13:58:10 -0400 Subject: python moment --- backend/decky_loader/utilities.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'backend/decky_loader/utilities.py') diff --git a/backend/decky_loader/utilities.py b/backend/decky_loader/utilities.py index c88a2f93..4850cdef 100644 --- a/backend/decky_loader/utilities.py +++ b/backend/decky_loader/utilities.py @@ -199,7 +199,7 @@ class Utilities: async def http_request_legacy(self, method: str, url: str, extra_opts: Any = {}, timeout: int | None = None): async with ClientSession() as web: - res = await web.request(method, url, ssl=helpers.get_ssl_context(), timeout=timeout **extra_opts) + res = await web.request(method, url, ssl=helpers.get_ssl_context(), timeout=timeout, **extra_opts) text = await res.text() return { "status": res.status, -- cgit v1.2.3