Skip to content

Commit 9f57bf0

Browse files
committed
Fix linter
1 parent 20daacd commit 9f57bf0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/test_concurrency.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313

1414
def test_accessing_context_from_threaded_sync_endpoint(
15-
test_client_factory: Callable[..., TestClient]
15+
test_client_factory: Callable[..., TestClient],
1616
) -> None:
1717
ctxvar: ContextVar[bytes] = ContextVar("ctxvar")
1818
ctxvar.set(b"data")

tests/test_routing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -630,7 +630,7 @@ def test_standalone_ws_route_does_not_match(test_client_factory):
630630

631631

632632
def test_lifespan_state_unsupported(
633-
test_client_factory: typing.Callable[..., TestClient]
633+
test_client_factory: typing.Callable[..., TestClient],
634634
):
635635
@contextlib.asynccontextmanager
636636
async def lifespan(app: Starlette):

0 commit comments

Comments
 (0)