From 0e167e2a028d75180986a9b5a7240704a8e99e7d Mon Sep 17 00:00:00 2001 From: Iker Pedrosa Date: Wed, 21 Jan 2026 09:23:31 +0100 Subject: [PATCH] tests/system/framework/utils/tools.py: apply style fix for tuple unpacking Signed-off-by: Iker Pedrosa --- tests/system/framework/utils/tools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/system/framework/utils/tools.py b/tests/system/framework/utils/tools.py index 03a79219..fe14dd18 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