Skip to content

Commit e5fa2de

Browse files
style: remove spaces in list initialisation
Signed-off-by: Mathieu Labourier <mathieu.labourier@vates.tech>
1 parent 365c7dd commit e5fa2de

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
@@ -4026,7 +4026,7 @@ def _gc_service_cmd(sr_uuid, action, extra_args=None):
40264026
Build and run the systemctl command for the GC service using util.doexec.
40274027
"""
40284028
sr_uuid_esc = sr_uuid.replace("-", "\\x2d")
4029-
cmd=[ "/usr/bin/systemctl", "--quiet" ]
4029+
cmd=["/usr/bin/systemctl", "--quiet"]
40304030
if extra_args:
40314031
cmd.extend(extra_args)
40324032
cmd += [action, f"SMGC@{sr_uuid_esc}"]

0 commit comments

Comments
 (0)