fix: ensure default values are of type str

pull/9659/head
Peter Siegel 2025-02-02 02:34:42 +01:00
parent 478b25c636
commit bdb9ab354f
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -191,7 +191,7 @@ class Connection(ConnectionBase):
if self.get_option("project"):
local_cmd.extend(["--project", self.get_option("project")])
uid, gid = (-1, -1) # lxd default values
uid, gid = ("-1", "-1") # lxd default values
if self.get_option("remote_user") != "root":
uid, gid = self._get_remote_uid_gid()