Skip to content

Commit ab5a11b

Browse files
committed
Fixed Argument comparison. Fixed #530
1 parent f68682e commit ab5a11b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

graphene/types/argument.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ def type(self):
2626

2727
def __eq__(self, other):
2828
return isinstance(other, Argument) and (
29-
self.name == other.name,
30-
self.type == other.type,
31-
self.default_value == other.default_value,
29+
self.name == other.name and
30+
self.type == other.type and
31+
self.default_value == other.default_value and
3232
self.description == other.description
3333
)
3434

0 commit comments

Comments
 (0)