Skip to content

Commit

Permalink
Print tasks that works
Browse files Browse the repository at this point in the history
  • Loading branch information
alexgleith committed Oct 2, 2024
1 parent 1f4d0b2 commit 6716acd
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": ",".join(tile[0]), "year": year, "version": version}
{"tile-id": ",".join([str(i) for i in tile[0]]), "year": year, "version": version}
for tile, year in product(list(tiles), years)
]

Expand Down

0 comments on commit 6716acd

Please sign in to comment.