1
0
mirror of https://github.com/kevin1024/vcrpy.git synced 2025-12-08 16:53:23 +00:00

pep8 fix on aiohttp_utils

This commit is contained in:
Luiz Menezes
2018-05-07 10:00:27 -03:00
parent cd864b5eca
commit 545c903ee2

View File

@@ -1,7 +1,8 @@
import aiohttp
async def aiohttp_request(loop, method, url, output='text', encoding='utf-8', headers=None, **kwargs): # NOQA: E999
async def aiohttp_request(loop, method, url, output='text',
encoding='utf-8', headers=None, **kwargs): # NOQA: E999
async with aiohttp.ClientSession(loop=loop, headers=headers or {}) as session: # NOQA: E999
async with session.request(method, url, **kwargs) as response: # NOQA: E999
if output == 'text':