From 8daaef56a551e1e87cb6610c5eeb66d75bb65709 Mon Sep 17 00:00:00 2001 From: Pierre-Antoine Rouby <pierre-antoine.rouby@inrae.fr> Date: Wed, 31 May 2023 13:18:45 +0200 Subject: [PATCH] Section: Delete useless print. --- src/View/Sections/UndoCommand.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/View/Sections/UndoCommand.py b/src/View/Sections/UndoCommand.py index 51e6989e..b6cb445a 100644 --- a/src/View/Sections/UndoCommand.py +++ b/src/View/Sections/UndoCommand.py @@ -65,9 +65,6 @@ class SetBeginStricklerCommand(QUndoCommand): self._old = self._sections.get(self._index).begin_strickler self._new = new_value - print(self._old) - print(self._new) - def undo(self): self._sections.get(self._index).begin_strickler = self._old @@ -83,9 +80,6 @@ class SetEndStricklerCommand(QUndoCommand): self._old = self._sections.get(self._index).end_strickler self._new = new_value - print(self._old) - print(self._new) - def undo(self): self._sections.get(self._index).end_strickler = self._old -- GitLab