mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-08 06:44:46 +08:00
fix problems with empty decorators - just '@' and nothing else
This commit is contained in:
@@ -655,7 +655,8 @@ class Parser(object):
|
||||
# decorator
|
||||
elif tok == '@':
|
||||
stmt, tok = self._parse_statement()
|
||||
self._decorators.append(stmt)
|
||||
if stmt is not None:
|
||||
self._decorators.append(stmt)
|
||||
elif tok == 'pass':
|
||||
continue
|
||||
elif tok == 'assert':
|
||||
|
||||
Reference in New Issue
Block a user