[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
This commit is contained in:
parent
fbfb4ebf58
commit
58521efcaa
|
@ -209,9 +209,9 @@ class Expression:
|
|||
|
||||
if mark:
|
||||
for node in ast.walk(astexpr):
|
||||
#if the node is an identifier, i.e. a mark name
|
||||
# if the node is an identifier, i.e. a mark name
|
||||
if isinstance(node, ast.Name):
|
||||
MARK_GEN.verify_mark(node.id[len(IDENT_PREFIX):])
|
||||
MARK_GEN.verify_mark(node.id[len(IDENT_PREFIX) :])
|
||||
|
||||
code: types.CodeType = compile(
|
||||
astexpr,
|
||||
|
|
Loading…
Reference in New Issue