From f8a53b6ffd21a7ddfd85ae4e3710623bf853f2e2 Mon Sep 17 00:00:00 2001
From: Eric Duminil <eric.duminil@gmail.com>
Date: Mon, 6 May 2024 11:42:09 +0200
Subject: [PATCH] Clearer warning

---
 .../add_trees_to_open_street_map/import_existing_trees.py       | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/python_scripts/add_trees_to_open_street_map/import_existing_trees.py b/python_scripts/add_trees_to_open_street_map/import_existing_trees.py
index 4c5d45e..19db832 100644
--- a/python_scripts/add_trees_to_open_street_map/import_existing_trees.py
+++ b/python_scripts/add_trees_to_open_street_map/import_existing_trees.py
@@ -17,7 +17,7 @@ def get_existing_forest(shp_input):
                           source=Path(shp_input).name
                           )
         if not added:
-            print(f"Warning, tree seems to be too close to others! Is it a duplicate?\n\t{tree_row}")
+            print(f"WARNING! tree seems to be too close to others! Is it a duplicate?\n\t{tree_row}")
     return forest
 
 if __name__ == "__main__":
-- 
GitLab