Skip to content

Commit

Permalink
comma separated string, not a list
Browse files Browse the repository at this point in the history
  • Loading branch information
alexgleith committed Oct 2, 2024
1 parent 048c6d3 commit 1f4d0b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/print_tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def main(
ValueError(f"{years} is not a valid value for --years")

tasks = [
{"tile-id": tile[0], "year": year, "version": version}
{"tile-id": ",".join(tile[0]), "year": year, "version": version}
for tile, year in product(list(tiles), years)
]

Expand Down

0 comments on commit 1f4d0b2

Please sign in to comment.