Skip to content

Commit

Permalink
Type: ignore os.startfile()
Browse files Browse the repository at this point in the history
  • Loading branch information
josiah-wolf-oberholtzer committed Aug 15, 2022
1 parent 756d96a commit 4739d51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion uqbar/io.py
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ def open_path(path: pathlib.Path) -> None:
elif platform.system() == "Linux":
subprocess.run(["xdg-open", str(path)], check=True)
elif platform.system() == "Windows":
os.startfile(str(path)) # noqa
os.startfile(str(path)) # type: ignore


def relative_to(
Expand Down

0 comments on commit 4739d51

Please sign in to comment.