diff --git a/main.py b/main.py index f3fd58b..f743171 100644 --- a/main.py +++ b/main.py @@ -50,7 +50,7 @@ async def fetch_class_mappings(css_translations_path : str, loader : Loader): Log(f"Fetching CSS mappings from {css_translations_url}") try: - async with aiohttp.ClientSession(connector=aiohttp.TCPConnector(ssl=False, use_dns_cache=False), timeout=aiohttp.ClientTimeout(total=5)) as session: + async with aiohttp.ClientSession(connector=aiohttp.TCPConnector(ssl=False, use_dns_cache=False), timeout=aiohttp.ClientTimeout(total=30)) as session: async with session.get(css_translations_url) as response: if response.status == 200: text = await response.text()