Skip to content

Commit 3dd725d

Browse files
committed
Fix last mypy issue in utils.py and activate mypy checking
1 parent 67108a0 commit 3dd725d

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

manim/_config/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1453,7 +1453,7 @@ def enable_gui(self, value: bool) -> None:
14531453
self._set_boolean("enable_gui", value)
14541454

14551455
@property
1456-
def gui_location(self) -> tuple[Any]:
1456+
def gui_location(self) -> tuple[int, ...]:
14571457
"""Location parameters for the GUI window (e.g., screen coordinates or layout settings)."""
14581458
return self._d["gui_location"]
14591459

mypy.ini

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,6 @@ disable_error_code = return-value
5555
[mypy-manim._config.logger_utils]
5656
ignore_errors = False
5757

58-
[mypy-manim._config.utils]
59-
ignore_errors = True
60-
6158
[mypy-manim.animation.*]
6259
ignore_errors = True
6360

0 commit comments

Comments
 (0)