Skip to content

Commit 29f1041

Browse files
committed
Add lint ignore
1 parent 78add2e commit 29f1041

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/server/apps/jsonrpc/test_jsonrpc_app.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,8 +112,8 @@ class TestJSONRPCApplicationOptionalDeps:
112112
@pytest.fixture(scope='class', autouse=True)
113113
def ensure_pkg_starlette_is_present(self):
114114
try:
115-
import starlette as _starlette
116-
import sse_starlette as _sse_starlette
115+
import sse_starlette as _sse_starlette # noqa: F401
116+
import starlette as _starlette # noqa: F401
117117
except ImportError:
118118
pytest.fail(
119119
f'Running tests in {self.__class__.__name__} requires'

0 commit comments

Comments
 (0)