[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:
|
if mark:
|
||||||
for node in ast.walk(astexpr):
|
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):
|
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(
|
code: types.CodeType = compile(
|
||||||
astexpr,
|
astexpr,
|
||||||
|
|
Loading…
Reference in New Issue