Skip to content

Commit

Permalink
another fix
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewAnnex authored Aug 14, 2024
1 parent 9a76bcb commit c74cd13
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion morecantile/scripts/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,9 @@ def tiles(ctx, zoom, input, identifier, seq, tms): # noqa: C901
east -= epsilon
north -= epsilon

for tile in tilematrixset.tiles(west, south, east, north, [zoom], truncate=False):
for tile in tilematrixset.tiles(
west, south, east, north, [zoom], truncate=False
):
vals = (tile.x, tile.y, zoom)
output = json.dumps(vals)
if seq:
Expand Down

0 comments on commit c74cd13

Please sign in to comment.