Skip to content

Commit 022a890

Browse files
committed
Fix typing error
1 parent de143cb commit 022a890

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/fastcs/backends/graphQL/graphQL.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ def _create_app(self) -> FastAPI:
4040
graphql_app: GraphQL = GraphQL(schema)
4141

4242
app = FastAPI()
43-
app.add_route("/graphql", graphql_app)
44-
app.add_websocket_route("/graphql", graphql_app)
43+
app.add_route("/graphql", graphql_app) # type: ignore
44+
app.add_websocket_route("/graphql", graphql_app) # type: ignore
4545

4646
return app
4747

0 commit comments

Comments
 (0)