Skip to content

Commit 0e167e2

Browse files
ikerexxealejandro-colomar
authored andcommitted
tests/system/framework/utils/tools.py: apply style fix for tuple unpacking
Signed-off-by: Iker Pedrosa <ipedrosa@redhat.com>
1 parent 958b485 commit 0e167e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/system/framework/utils/tools.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def __eq__(self, o: object) -> bool:
6161
if len(o) != 2 or not isinstance(o[0], int) or not isinstance(o[1], str):
6262
raise NotImplementedError(f"Unable to compare {type(o)} with {self.__class__}")
6363

64-
(id, name) = o
64+
id, name = o
6565
return id == self.id and name == self.name
6666
elif isinstance(o, UnixObject):
6767
# Fallback to identity comparison

0 commit comments

Comments
 (0)