Fixed Argument comparison. Fixed #530

This commit is contained in:
Syrus Akbary 2017-08-29 20:21:17 -07:00
parent f68682e153
commit ab5a11b399

View File

@ -26,9 +26,9 @@ class Argument(MountedType):
def __eq__(self, other):
return isinstance(other, Argument) and (
self.name == other.name,
self.type == other.type,
self.default_value == other.default_value,
self.name == other.name and
self.type == other.type and
self.default_value == other.default_value and
self.description == other.description
)