Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
charles-cooper committed Oct 10, 2024
1 parent 97f7136 commit 2994676
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tests/unit/ast/test_ast_dict.py
Original file line number Diff line number Diff line change
Expand Up @@ -1781,6 +1781,7 @@ def qux2():
}
]


def test_annotated_ast_export_recursion(make_input_bundle):
sources = {
"main.vy": """
Expand All @@ -1799,7 +1800,7 @@ def foo():
"lib2.vy": """
def foo():
pass
"""
""",
}

input_bundle = make_input_bundle(sources)
Expand All @@ -1824,4 +1825,4 @@ def compile_and_get_ast(file_name):

for key in keys:
assert lib1_ast[key] == lib1_import_ast[key]
assert lib2_ast[key] == lib2_import_ast[key]
assert lib2_ast[key] == lib2_import_ast[key]

0 comments on commit 2994676

Please sign in to comment.