We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f68682e commit ab5a11bCopy full SHA for ab5a11b
graphene/types/argument.py
@@ -26,9 +26,9 @@ def type(self):
26
27
def __eq__(self, other):
28
return isinstance(other, Argument) and (
29
- self.name == other.name,
30
- self.type == other.type,
31
- self.default_value == other.default_value,
+ self.name == other.name and
+ self.type == other.type and
+ self.default_value == other.default_value and
32
self.description == other.description
33
)
34
0 commit comments