forked from VimPlug/jedi
Remove dedents from the parser tree. No need for them.
This commit is contained in:
+1
-1
@@ -74,7 +74,7 @@ class DocstringMixin(object):
|
||||
elif isinstance(self, ClassOrFunc):
|
||||
node = self.children[self.children.index(':') + 1]
|
||||
if is_node(node, 'suite'): # Normally a suite
|
||||
node = node.children[2] # -> NEWLINE INDENT stmt
|
||||
node = node.children[1] # -> NEWLINE stmt
|
||||
else: # ExprStmt
|
||||
simple_stmt = self.parent
|
||||
c = simple_stmt.parent.children
|
||||
|
||||
Reference in New Issue
Block a user