Skip to content

Commit

Permalink
revert a change
Browse files Browse the repository at this point in the history
  • Loading branch information
charles-cooper committed Jan 6, 2024
1 parent 42e06f5 commit e7a4612
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vyper/semantics/analysis/module.py
Original file line number Diff line number Diff line change
Expand Up @@ -485,13 +485,13 @@ def _load_import_helper(


def _parse_and_fold_ast(file: FileInput) -> vy_ast.VyperNode:
ast = vy_ast.parse_to_ast(
ret = vy_ast.parse_to_ast(
file.source_code,
source_id=file.source_id,
module_path=str(file.path),
resolved_path=str(file.resolved_path),
)
return ast
return ret


# convert an import to a path (without suffix)
Expand Down

0 comments on commit e7a4612

Please sign in to comment.