diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2017-12-31 20:43:16 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-31 20:43:16 +0900 |
commit | 1cae50f74833fc3506ebee19462e0a1457638352 (patch) | |
tree | 5e7b9714b84288b1ca04438b73611a78aa4c23df /sphinx/pycode/nodes.py | |
parent | 1b664248f4ed5e00f89574bd6568e86b29a9df0f (diff) | |
parent | 0059c05a857f4144e4eea8b3d2908e906cf7de49 (diff) | |
download | sphinx-git-1cae50f74833fc3506ebee19462e0a1457638352.tar.gz |
Merge branch 'stable' into 4a164170-33e9-4df3-aad2-a13af37b6b43
Diffstat (limited to 'sphinx/pycode/nodes.py')
-rw-r--r-- | sphinx/pycode/nodes.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/pycode/nodes.py b/sphinx/pycode/nodes.py index cecde9bd0..ea3b3e9ad 100644 --- a/sphinx/pycode/nodes.py +++ b/sphinx/pycode/nodes.py @@ -208,5 +208,5 @@ class NodeVisitor(object): def generic_visit(self, node): """Called if no explicit visitor function exists for a node.""" if isinstance(node, Node): - for child in node: # type: ignore + for child in node: self.visit(child) |