]> git.ipfire.org Git - thirdparty/mkosi.git/commitdiff
user: drop unneeded stringification
authorJörg Behrmann <behrmann@physik.fu-berlin.de>
Thu, 6 Feb 2025 14:55:23 +0000 (15:55 +0100)
committerJörg Behrmann <behrmann@physik.fu-berlin.de>
Fri, 7 Feb 2025 09:02:19 +0000 (10:02 +0100)
mkosi/user.py

index 37ead626db0d3b1636f36e44ec69660c75433a1f..d83d1dd3cd4148ac930dd31694527a494957d431 100644 (file)
@@ -182,7 +182,7 @@ def become_root_in_subuid_range_cmd() -> list[str]:
         "--keep-caps",
     ]  # fmt: skip
 
-    return [str(x) for x in cmd]
+    return cmd
 
 
 def become_root_cmd() -> list[str]: