Skip to content

Commit

Permalink
🚸 Increase indent before missing resource sources
Browse files Browse the repository at this point in the history
  • Loading branch information
shnizzedy committed Jan 20, 2025
1 parent 8b369f3 commit c6b3a18
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CPAC/pipeline/resource_inventory.py
Original file line number Diff line number Diff line change
Expand Up @@ -652,9 +652,9 @@ def where_to_find(resources: list[str] | str) -> str:
output += f"'{resource}' can be output from:\n"
if resource in inventory:
for source in inventory[resource].output_from:
output += f" {source}\n"
output += f" {source}\n"
else:
output += " !! Nowhere !!\n"
output += " !! Nowhere !!\n"
output += "\n"
return output.rstrip()

Expand Down

0 comments on commit c6b3a18

Please sign in to comment.