We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 958b485 commit 0e167e2Copy full SHA for 0e167e2
tests/system/framework/utils/tools.py
@@ -61,7 +61,7 @@ def __eq__(self, o: object) -> bool:
61
if len(o) != 2 or not isinstance(o[0], int) or not isinstance(o[1], str):
62
raise NotImplementedError(f"Unable to compare {type(o)} with {self.__class__}")
63
64
- (id, name) = o
+ id, name = o
65
return id == self.id and name == self.name
66
elif isinstance(o, UnixObject):
67
# Fallback to identity comparison
0 commit comments