Skip to content

Commit

Permalink
Remove an unnecessary list construction.
Browse files Browse the repository at this point in the history
  • Loading branch information
rikardg committed Jan 3, 2025
1 parent e2ff196 commit bd8326c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bygg/cmd/dispatcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ def parent_dispatcher(
for v in environment_data.values():
if v.tree:
tree_actions = tree_actions - v.found_actions
print_tree(v.tree, list(actions_to_build))
print_tree(v.tree, actions_to_build)
if tree_actions:
not_found_actions = [
f"'{a}'"
Expand Down

0 comments on commit bd8326c

Please sign in to comment.