We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e0a3bc commit 6f1dd10Copy full SHA for 6f1dd10
1 file changed
fairworkflows/fairstep.py
@@ -71,7 +71,7 @@ def uri(self):
71
return self._uri
72
73
def __eq__(self, other):
74
- return self.name == other.name and self.computational_type == other.computational_type
+ return self.name == other.name and ((self.computational_type == other.computational_type) or (self.computational_type is None))
75
76
def __hash__(self):
77
return hash(str(self))
0 commit comments