Skip to content

Commit f062ef7

Browse files
committed
Bump mypy to 1.14.1
1 parent 6493753 commit f062ef7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ docs = [
8282
]
8383
lint = [
8484
"ruff==0.8.5",
85-
"mypy==1.13.0",
85+
"mypy==1.14.1",
8686
"sphinx-lint>=0.9",
8787
"types-colorama==0.4.15.20240311",
8888
"types-defusedxml==0.7.0.20240218",

sphinx/ext/graphviz.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ def render_dot(
333333
)
334334
if not hasattr(self.builder, '_graphviz_warned_dot'):
335335
self.builder._graphviz_warned_dot = {} # type: ignore[union-attr]
336-
self.builder._graphviz_warned_dot[graphviz_dot] = True
336+
self.builder._graphviz_warned_dot[graphviz_dot] = True # type: ignore[union-attr]
337337
return None, None
338338
except CalledProcessError as exc:
339339
raise GraphvizError(

0 commit comments

Comments
 (0)