From c25bd5b94c30b80406ee46d1a0a019050a949877 Mon Sep 17 00:00:00 2001 From: PeculiarProgrammer <179261820+PeculiarProgrammer@users.noreply.github.com> Date: Mon, 11 Nov 2024 11:12:58 -0500 Subject: [PATCH] Fix workflow bug 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. --- manim_slides/convert.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manim_slides/convert.py b/manim_slides/convert.py index 98b9a191..b693bc3c 100644 --- a/manim_slides/convert.py +++ b/manim_slides/convert.py @@ -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)))