From 3ca5763afc63070a33b6e170699edaa99ae4da92 Mon Sep 17 00:00:00 2001 From: Guilhem Allaman <40383801+gounux@users.noreply.github.com> Date: Thu, 4 Jul 2024 11:29:06 +0200 Subject: [PATCH] fix image body dimensions declaration (#232) Co-authored-by: gounux --- geotribu_cli/constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/geotribu_cli/constants.py b/geotribu_cli/constants.py index b0196d2..f932f07 100644 --- a/geotribu_cli/constants.py +++ b/geotribu_cli/constants.py @@ -116,7 +116,7 @@ class GeotribuDefaults: # images images_body_extensions: tuple = (".png", ".jpg", ".jpeg", ".webp") - images_body_dimensions_max: tuple = (".png", ".jpg", ".jpeg", ".webp") + 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")