From db299d49eeb16ed8a9dfe3d0373ce67ef5cb0e56 Mon Sep 17 00:00:00 2001 From: Nils Landrodie Date: Mon, 9 Aug 2021 20:33:39 +0200 Subject: [PATCH] [python] Remove trailing whitespaces --- meshroom/ui/graph.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meshroom/ui/graph.py b/meshroom/ui/graph.py index e25c6e34..3134e7a6 100644 --- a/meshroom/ui/graph.py +++ b/meshroom/ui/graph.py @@ -476,14 +476,14 @@ class UIGraph(QObject): GroupedGraphModification: the instantiated context manager """ return commands.GroupedGraphModification(self._graph, self._undoStack, title, disableUpdates) - + @Slot(str) def beginModification(self, name): """ Begin a Graph modification. Calls to beginModification and endModification may be nested, but every call to beginModification must have a matching call to endModification. """ self._modificationCount += 1 self._undoStack.beginMacro(name) - + @Slot() def endModification(self): """ Ends a Graph modification. Must match a call to beginModification. """