Skip to content

Commit

Permalink
Fix workflow bug
Browse files Browse the repository at this point in the history
pre-commit.ci informed me that line 51 of manim_slides/convert.py shouldn't have the no-type checker on my computer, but it is required on the workflow.
  • Loading branch information
PeculiarProgrammer committed Nov 11, 2024
1 parent 1bd6bf8 commit c25bd5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion manim_slides/convert.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def open_with_default(file: Path) -> None:
if system == "Darwin":
subprocess.call(("open", str(file)))
elif system == "Windows":
os.startfile(str(file))
os.startfile(str(file)) # type: ignore[attr-defined]
else:
subprocess.call(("xdg-open", str(file)))

Expand Down

0 comments on commit c25bd5b

Please sign in to comment.