cfde91dacd
Align with ecosystem norms per review feedback: - Add mypy-init-return = true to skip -> None on __init__ when args are typed - Exempt tests/** from ANN rules (near-universal practice) - Revert test file annotations and __init__-only changes Shrinks diff from 149 to ~47 files, keeping the valuable src/ return type annotations that close the pyright gap.
7 lines
74 B
Python
7 lines
74 B
Python
import pytest
|
|
|
|
|
|
@pytest.fixture
|
|
def anyio_backend():
|
|
return "asyncio"
|