summaryrefslogtreecommitdiff
path: root/sphinx/ext/graphviz.py
diff options
context:
space:
mode:
authorAdam Turner <9087854+aa-turner@users.noreply.github.com>2022-11-13 20:36:24 +0000
committerAdam Turner <9087854+aa-turner@users.noreply.github.com>2022-11-13 20:36:24 +0000
commitcd3f2e435000835dd98a11497440bc16a79ec31c (patch)
tree6c89dfa43e74f4c47a3255f38ab013cc3cf997a1 /sphinx/ext/graphviz.py
parenta6032e852a650c070aed66f0790e612905159f15 (diff)
downloadsphinx-git-cd3f2e435000835dd98a11497440bc16a79ec31c.tar.gz
Update typing ignores for mypy 0.990
Diffstat (limited to 'sphinx/ext/graphviz.py')
-rw-r--r--sphinx/ext/graphviz.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/ext/graphviz.py b/sphinx/ext/graphviz.py
index df06069c1..74291163f 100644
--- a/sphinx/ext/graphviz.py
+++ b/sphinx/ext/graphviz.py
@@ -225,7 +225,7 @@ def render_dot(self: SphinxTranslator, code: str, options: Dict, format: str,
return relfn, outfn
if (hasattr(self.builder, '_graphviz_warned_dot') and
- self.builder._graphviz_warned_dot.get(graphviz_dot)): # type: ignore[attr-defined]
+ self.builder._graphviz_warned_dot.get(graphviz_dot)):
return None, None
ensuredir(path.dirname(outfn))