Skip to content

Commit

Permalink
remove ast feature_version (#1624)
Browse files Browse the repository at this point in the history
  • Loading branch information
Louis-Dupont authored Nov 8, 2023
1 parent 270f7b2 commit 11888c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unit_tests/test_convert_recipe_to_code.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def test_convert_recipes_that_should_work(self):
convert_recipe_to_code(recipe, self.recipes_dir, output_script_path)
src = output_script_path.read_text()
try:
ast.parse(src, feature_version=(3, 9))
ast.parse(src)
except SyntaxError as e:
self.fail(f"Recipe {recipe} failed to convert to python script: {e}")

Expand Down

0 comments on commit 11888c0

Please sign in to comment.