1
0
Fork 0
mirror of https://github.com/myned/modufur.git synced 2024-12-24 14:27:27 +00:00

Fix aiohttp warning for ClientSession outside of async construct

This commit is contained in:
Dylan Dizon 2018-11-03 17:04:52 -04:00
parent c51353df76
commit ef632a10b5

View file

@ -88,17 +88,17 @@ secrets = setdefault('secrets.json', default={'client_secrets': {'client_id': ''
cogs = {}
color = d.Color(0x1A1A1A)
session = aiohttp.ClientSession()
last_commands = {}
async def fetch(url, *, params={}, json=False, response=False):
async with session.get(url, params=params, headers={'User-Agent': 'Myned/Modufur'}) as r:
if response:
return r
elif json:
return await r.json()
return await r.read()
async with aiohttp.ClientSession() as session:
async with session.get(url, params=params, headers={'User-Agent': 'Myned/Modufur'}, ssl=False) as r:
if response:
return r
elif json:
return await r.json()
return await r.read()
# async def clear(obj, interval=10 * 60, replace=None):