Skip to content

Commit 7d09b70

Browse files
committed
Remove unused method mapping in parser
1 parent 1070017 commit 7d09b70

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/graphql/language/parser.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -236,11 +236,6 @@ def parse_definition(self) -> DefinitionNode:
236236
return self.parse_type_system_definition()
237237
raise self.unexpected()
238238

239-
_parse_executable_definition_method_names: Dict[str, str] = {
240-
**dict.fromkeys(("query", "mutation", "subscription"), "operation_definition"),
241-
**dict.fromkeys(("fragment",), "fragment_definition"),
242-
}
243-
244239
# Implement the parsing rules in the Operations section.
245240

246241
def parse_operation_definition(self) -> OperationDefinitionNode:

0 commit comments

Comments
 (0)