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

Ignore syntax error on async stuff

This commit is contained in:
Luiz Menezes
2018-05-02 09:07:14 -03:00
parent 26be756f47
commit f1f8ce2af4

View File

@@ -1,8 +1,8 @@
import aiohttp
async def aiohttp_request(loop, method, url, output='text', **kwargs):
with aiohttp.ClientSession(loop=loop) as session:
async def aiohttp_request(loop, method, url, output='text', **kwargs): # NOQA: E999
async with aiohttp.ClientSession(loop=loop) as session: # NOQA: E999
response = await session.request(method, url, **kwargs) # NOQA: E999
if output == 'text':
content = await response.text() # NOQA: E999