mirror of
https://github.com/kevin1024/vcrpy.git
synced 2025-12-10 01:25:34 +00:00
Ignore syntax error on async stuff
This commit is contained in:
@@ -1,8 +1,8 @@
|
|||||||
import aiohttp
|
import aiohttp
|
||||||
|
|
||||||
|
|
||||||
async def aiohttp_request(loop, method, url, output='text', **kwargs):
|
async def aiohttp_request(loop, method, url, output='text', **kwargs): # NOQA: E999
|
||||||
with aiohttp.ClientSession(loop=loop) as session:
|
async with aiohttp.ClientSession(loop=loop) as session: # NOQA: E999
|
||||||
response = await session.request(method, url, **kwargs) # NOQA: E999
|
response = await session.request(method, url, **kwargs) # NOQA: E999
|
||||||
if output == 'text':
|
if output == 'text':
|
||||||
content = await response.text() # NOQA: E999
|
content = await response.text() # NOQA: E999
|
||||||
|
|||||||
Reference in New Issue
Block a user