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
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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"