We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 78add2e commit 29f1041Copy full SHA for 29f1041
tests/server/apps/jsonrpc/test_jsonrpc_app.py
@@ -112,8 +112,8 @@ class TestJSONRPCApplicationOptionalDeps:
112
@pytest.fixture(scope='class', autouse=True)
113
def ensure_pkg_starlette_is_present(self):
114
try:
115
- import starlette as _starlette
116
- import sse_starlette as _sse_starlette
+ import sse_starlette as _sse_starlette # noqa: F401
+ import starlette as _starlette # noqa: F401
117
except ImportError:
118
pytest.fail(
119
f'Running tests in {self.__class__.__name__} requires'
0 commit comments