Skip to content

Commit

Permalink
min and max zoom should be integers
Browse files Browse the repository at this point in the history
  • Loading branch information
nicokant committed Sep 18, 2024
1 parent a8aec1f commit 2856b29
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions metadata_catalogue/maps/libs/maplibre.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ class Config:
url: str | None = None
attribution: str | None = None
bounds: list[float] | None = None
maxzoom: str | None = None
minzoom: str | None = None
maxzoom: int | None = None
minzoom: int | None = None
promoteId: str | dict[str, str] | None = None
scheme: str | None = None
volatile: bool | None = None
Expand Down

0 comments on commit 2856b29

Please sign in to comment.