Skip to content

Commit 95ed874

Browse files
style: remove spaces in list initialisation
Signed-off-by: Mathieu Labourier <mathieu.labourier@vates.tech>
1 parent 4b1d2d9 commit 95ed874

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/cleanup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4038,7 +4038,7 @@ def _gc_service_cmd(sr_uuid, action, extra_args=None):
40384038
Build and run the systemctl command for the GC service using util.doexec.
40394039
"""
40404040
sr_uuid_esc = sr_uuid.replace("-", "\\x2d")
4041-
cmd=[ "/usr/bin/systemctl", "--quiet" ]
4041+
cmd=["/usr/bin/systemctl", "--quiet"]
40424042
if extra_args:
40434043
cmd.extend(extra_args)
40444044
cmd += [action, f"SMGC@{sr_uuid_esc}"]

0 commit comments

Comments
 (0)