Master #587

Merged
mpeltriaux merged 6 commits from master into Docker 2026-09-13 12:13:37 +02:00
Showing only changes of commit 7e136f4022 - Show all commits
+2 -2
View File
@@ -201,10 +201,10 @@ class GeoJsonValidator:
Returns:
"""
features = self._input_geojson.get("features", [])
features = self._input_geojson.get("features", None)
is_input_geojson_empty = len(self._input_geojson) == 0
no_features_in_input_found = not features
no_features_in_input_found = features is None
if not is_input_geojson_empty and no_features_in_input_found:
# check if _input_geojson is a feature itself