Skip to content

Commit 1ab1c04

Browse files
authored
Merge pull request #158 from Cito/fix_utils_type_info
Fix a small problem in the TypeInfo utility class
2 parents f2c4f6d + 96aec00 commit 1ab1c04

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

graphql/utils/type_info.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ def leave_Argument(self):
148148
self._argument = None
149149
pop(self._input_type_stack)
150150

151-
def leave_ListType(self):
151+
def leave_ListValue(self):
152152
pop(self._input_type_stack)
153153

154-
leave_ObjectField = leave_ListType
154+
leave_ObjectField = leave_ListValue

0 commit comments

Comments
 (0)