From ae31f03786ddad92729f95c4320af547fce69b85 Mon Sep 17 00:00:00 2001
From: Christoph Schmidt <christoph.,schmidt@tugraz.at>
Date: Fri, 5 Jan 2024 13:17:05 +0100
Subject: [PATCH] Changed the logger implementation. Updated to 1.2.1

---
 pyproject.toml                                | 2 +-
 src/confighandler/view/fields/FieldViewInt.py | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/pyproject.toml b/pyproject.toml
index d75829e..2cd1b07 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,6 +1,6 @@
 [project]
 name = "confighandler"
-version = "1.2.0"
+version = "1.2.1"
 authors = [
   { name="Christoph Schmidt", email="cschmidt.fs@gmail.com" },
 ]
diff --git a/src/confighandler/view/fields/FieldViewInt.py b/src/confighandler/view/fields/FieldViewInt.py
index f932729..ea116f5 100644
--- a/src/confighandler/view/fields/FieldViewInt.py
+++ b/src/confighandler/view/fields/FieldViewInt.py
@@ -43,6 +43,6 @@ class FieldViewInt(FieldView):
     #    pass
 
     def _on_value_changed_partial(self, value):
-        #print(f">>> {self.parent_field.name}: Value changed {value}")
+
         for edit in self.ui_edit_fields:
             edit.setValue(int(value))
-- 
GitLab