We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6493753 commit f062ef7Copy full SHA for f062ef7
pyproject.toml
@@ -82,7 +82,7 @@ docs = [
82
]
83
lint = [
84
"ruff==0.8.5",
85
- "mypy==1.13.0",
+ "mypy==1.14.1",
86
"sphinx-lint>=0.9",
87
"types-colorama==0.4.15.20240311",
88
"types-defusedxml==0.7.0.20240218",
sphinx/ext/graphviz.py
@@ -333,7 +333,7 @@ def render_dot(
333
)
334
if not hasattr(self.builder, '_graphviz_warned_dot'):
335
self.builder._graphviz_warned_dot = {} # type: ignore[union-attr]
336
- self.builder._graphviz_warned_dot[graphviz_dot] = True
+ self.builder._graphviz_warned_dot[graphviz_dot] = True # type: ignore[union-attr]
337
return None, None
338
except CalledProcessError as exc:
339
raise GraphvizError(
0 commit comments