Skip to content

Commit 7ddfaeb

Browse files
committed
fix type annotations
1 parent 65cb3e5 commit 7ddfaeb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

graphene_tornado/graphql_extension.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ class GraphQLExtension:
2323
@abstractmethod
2424
def request_started(self,
2525
request: HTTPServerRequest,
26-
query_string: Optional[str],,
26+
query_string: Optional[str],
2727
parsed_query: Optional[Document],
2828
operation_name: Optional[str],
29-
variables: Optional[dict[str, Any]],
29+
variables: Optional[Dict[str, Any]],
3030
context: Any,
3131
request_context: Any
3232
) -> EndHandler:

0 commit comments

Comments
 (0)