From 5789c3d9884d3e4c16653bd244469b1fd45b80e5 Mon Sep 17 00:00:00 2001 From: Alexander Watzinger Date: Fri, 22 Dec 2023 14:16:04 +0100 Subject: [PATCH] Annotation cleanup --- openatlas/forms/base_manager.py | 1 - 1 file changed, 1 deletion(-) diff --git a/openatlas/forms/base_manager.py b/openatlas/forms/base_manager.py index 5c7d238e7..45f373a89 100644 --- a/openatlas/forms/base_manager.py +++ b/openatlas/forms/base_manager.py @@ -228,7 +228,6 @@ def process_form(self) -> None: for shape in ['point', 'line', 'polygon']} if 'annotation' in self.fields: self.data['annotation'] = getattr(self.form, 'annotation').data - print(self.data['annotation']) def insert_entity(self) -> None: self.entity = Entity.insert(self.class_.name, self.form.name.data)