Skip to content

Commit 8047086

Browse files
committed
Fix linting errors.
1 parent 04c5625 commit 8047086

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

rplugin/python3/semshi/visitor.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,8 @@ def visit(self, node):
9393
self._visit_arg(node)
9494
elif type_ in FUNCTION_BLOCKS:
9595
self._visit_arg_defaults(node)
96-
elif type_ in (ast.ListComp, ast.SetComp, ast.DictComp, ast.GeneratorExp):
96+
elif type_ in (ast.ListComp, ast.SetComp, ast.DictComp,
97+
ast.GeneratorExp):
9798
self._visit_comp(node)
9899
elif type_ in (ast.Global, ast.Nonlocal):
99100
keyword = 'global' if type_ is ast.Global else 'nonlocal'

0 commit comments

Comments
 (0)