From: Iker Pedrosa Date: Wed, 21 Jan 2026 08:23:31 +0000 (+0100) Subject: tests/system/framework/utils/tools.py: apply style fix for tuple unpacking X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0e167e2a028d75180986a9b5a7240704a8e99e7d;p=thirdparty%2Fshadow.git tests/system/framework/utils/tools.py: apply style fix for tuple unpacking Signed-off-by: Iker Pedrosa --- diff --git a/tests/system/framework/utils/tools.py b/tests/system/framework/utils/tools.py index 03a79219a..fe14dd182 100644 --- a/tests/system/framework/utils/tools.py +++ b/tests/system/framework/utils/tools.py @@ -61,7 +61,7 @@ class UnixObject(object): if len(o) != 2 or not isinstance(o[0], int) or not isinstance(o[1], str): raise NotImplementedError(f"Unable to compare {type(o)} with {self.__class__}") - (id, name) = o + id, name = o return id == self.id and name == self.name elif isinstance(o, UnixObject): # Fallback to identity comparison