ruff/crates/ruff_linter/resources/test/fixtures/flake8_async/ASYNC250.py

23 lines
322 B
Python

def foo():
k = input() # Ok
input("hello world") # Ok
async def foo():
k = input() # ASYNC250
input("hello world") # ASYNC250
import builtins
import fake
def foo():
builtins.input("testing") # Ok
async def foo():
builtins.input("testing") # ASYNC250
fake.input("whatever") # Ok