forked from VimPlug/jedi
fix problems with empty decorators - just '@' and nothing else
This commit is contained in:
@@ -655,7 +655,8 @@ class Parser(object):
|
|||||||
# decorator
|
# decorator
|
||||||
elif tok == '@':
|
elif tok == '@':
|
||||||
stmt, tok = self._parse_statement()
|
stmt, tok = self._parse_statement()
|
||||||
self._decorators.append(stmt)
|
if stmt is not None:
|
||||||
|
self._decorators.append(stmt)
|
||||||
elif tok == 'pass':
|
elif tok == 'pass':
|
||||||
continue
|
continue
|
||||||
elif tok == 'assert':
|
elif tok == 'assert':
|
||||||
|
|||||||
Reference in New Issue
Block a user