diff options
| author | marios <marios8543@gmail.com> | 2025-10-07 01:08:39 +0300 |
|---|---|---|
| committer | marios <marios8543@gmail.com> | 2025-10-07 01:08:39 +0300 |
| commit | 6640279ab341b95605c71165dc1c295afbf77a58 (patch) | |
| tree | d3b2c50541295a1a5a794d2d6abddd893e9354f8 /backend/decky_loader/utilities.py | |
| parent | 6fba20239b305e92a79b360ee87850f8f2d9b62e (diff) | |
| download | decky-loader-6640279ab341b95605c71165dc1c295afbf77a58.tar.gz decky-loader-6640279ab341b95605c71165dc1c295afbf77a58.zip | |
add frontend
Diffstat (limited to 'backend/decky_loader/utilities.py')
| -rw-r--r-- | backend/decky_loader/utilities.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/decky_loader/utilities.py b/backend/decky_loader/utilities.py index ab2dde6f..63ffff06 100644 --- a/backend/decky_loader/utilities.py +++ b/backend/decky_loader/utilities.py @@ -214,7 +214,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) # type: ignore text = await res.text() return { "status": res.status, |
