ruff/crates/ruff_linter/resources/test/fixtures/flake8_async/ASYNC100.py
2023-09-20 08:38:27 +02:00

23 lines
282 B
Python

import urllib.request
import requests
import httpx
async def foo():
urllib.request.urlopen("http://example.com/foo/bar").read()
async def foo():
requests.get()
async def foo():
httpx.get()
async def foo():
requests.post()
async def foo():
httpx.post()