add frontend

This commit is contained in:
marios
2025-10-07 01:08:39 +03:00
parent 6fba20239b
commit 6640279ab3
6 changed files with 8 additions and 6 deletions
+1 -1
View File
@@ -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,