Remove asterisk on destructured args

Otherwise we would create a tuple containing
a tuple of arguments and an empty tuple.
This commit is contained in:
erik 2023-02-22 16:23:03 +01:00
parent c91bbe787b
commit fa73c52fe2

View file

@ -6,7 +6,7 @@ class SystemRepository():
self.stdout = [""]
self.stderr = [""]
def run(self, *args):
def run(self, args):
stream = sub.Popen(args,
stdout=sub.PIPE,
stderr=sub.PIPE,