Incorrect usage of list append

Co-authored-by: William de Castro <williamtdcastro@gmail.com>
This commit is contained in:
Xarvex
2024-04-28 14:07:23 -05:00
committed by GitHub
parent 737be6199f
commit 3446e0601a

View File

@@ -83,7 +83,7 @@ def open_file(path: str, file_manager: bool = False):
command_args = [path]
if file_manager:
# will reveal in Finder
command_args = command_args.append("-R")
command_args.append("-R")
else:
if file_manager:
command_name = "dbus-send"