Skip to content

Commit

Permalink
fix lint for ubuntu
Browse files Browse the repository at this point in the history
  • Loading branch information
zackees committed May 10, 2023
1 parent 0708399 commit fe9ad5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/video_subtitles/gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
def open_folder(path):
"""Opens a folder in the OS."""
if platform.system() == "Windows":
os.startfile(path)
os.startfile(path) # pylint: disable=no-member
elif platform.system() == "Darwin":
subprocess.Popen(["open", path]) # pylint: disable=consider-using-with
else:
Expand Down

0 comments on commit fe9ad5e

Please sign in to comment.