mirror of
https://github.com/astral-sh/ruff.git
synced 2025-09-29 13:25:17 +00:00
23 lines
282 B
Python
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()
|