Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
charles-cooper committed Feb 26, 2024
1 parent f2ee44e commit 4f8c0c8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion vyper/ast/parse.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,9 @@ def annotate_python_ast(
The annotated and optimized AST.
"""

tokens = asttokens.ASTTokens(original_source, tree=cast(Optional[python_ast.Module], parsed_ast))
tokens = asttokens.ASTTokens(
original_source, tree=cast(Optional[python_ast.Module], parsed_ast)
)
visitor = AnnotatingVisitor(
python_source,
modification_offsets,
Expand Down

0 comments on commit 4f8c0c8

Please sign in to comment.