Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
alexgleith committed Oct 9, 2024
1 parent 60cfc5d commit 57a065b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/print_tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ def main(
) -> None:
country_codes = None if regions.upper() == "ALL" else regions.split(",")

tiles = get_tiles(country_codes=country_codes, buffer_distance=tile_buffer_kms * 1000)
tiles = get_tiles(
country_codes=country_codes, buffer_distance=tile_buffer_kms * 1000
)

if limit is not None:
limit = int(limit)
Expand Down

0 comments on commit 57a065b

Please sign in to comment.