From 1179b0eae343e3d81d26ce5c7e7675ed2090f31f Mon Sep 17 00:00:00 2001 From: phixxy Date: Wed, 19 Jul 2023 23:48:20 -0700 Subject: [PATCH] removed timeout --- sparkytron3000.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sparkytron3000.py b/sparkytron3000.py index 770f267..cd34924 100644 --- a/sparkytron3000.py +++ b/sparkytron3000.py @@ -348,8 +348,8 @@ async def task_loop(): await bot_stuff.send("All daily tasks successfully ran!") async def create_session(): - timeout = aiohttp.ClientTimeout(total=30) - return aiohttp.ClientSession(timeout=timeout) + #timeout = aiohttp.ClientTimeout(total=30) + return aiohttp.ClientSession()#timeout=timeout) async def close_session(http_session): await http_session.close()