We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8c2483c commit e94a8aeCopy full SHA for e94a8ae
1 file changed
graphql/pyutils/compat.py
@@ -54,7 +54,7 @@
54
advance_iterator = next
55
except NameError:
56
57
- def advance_iterator(it):
+ def advance_iterator(it): # type: ignore
58
return it.next()
59
60
@@ -65,7 +65,7 @@ def advance_iterator(it):
65
callable = callable # type: Callable
66
67
68
- def callable(obj):
+ def callable(obj): # type: ignore
69
return any("__call__" in klass.__dict__ for klass in type(obj).__mro__)
70
71
0 commit comments