Skip to content

Commit

Permalink
fix tuple typing
Browse files Browse the repository at this point in the history
  • Loading branch information
gounux committed Jul 4, 2024
1 parent 9c2ee1e commit 6ee9a74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion geotribu_cli/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ class GeotribuDefaults:

# images
images_body_extensions: tuple = (".png", ".jpg", ".jpeg", ".webp")
images_body_dimensions_max: tuple = 400 * 800
images_body_dimensions_max: tuple = (400, 800)
images_header_extensions: tuple = (".png", ".jpg", ".jpeg")
images_header_dimensions_ratio: int = 400 * 800
images_icon_extensions: tuple = (".png", ".jpg", ".jpeg", ".webp")
Expand Down

0 comments on commit 6ee9a74

Please sign in to comment.