mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-07-18 17:17:18 +02:00
[python] Remove trailing whitespaces
This commit is contained in:
parent
e43e78d1bc
commit
db299d49ee
1 changed files with 2 additions and 2 deletions
|
@ -476,14 +476,14 @@ class UIGraph(QObject):
|
||||||
GroupedGraphModification: the instantiated context manager
|
GroupedGraphModification: the instantiated context manager
|
||||||
"""
|
"""
|
||||||
return commands.GroupedGraphModification(self._graph, self._undoStack, title, disableUpdates)
|
return commands.GroupedGraphModification(self._graph, self._undoStack, title, disableUpdates)
|
||||||
|
|
||||||
@Slot(str)
|
@Slot(str)
|
||||||
def beginModification(self, name):
|
def beginModification(self, name):
|
||||||
""" Begin a Graph modification. Calls to beginModification and endModification may be nested, but
|
""" Begin a Graph modification. Calls to beginModification and endModification may be nested, but
|
||||||
every call to beginModification must have a matching call to endModification. """
|
every call to beginModification must have a matching call to endModification. """
|
||||||
self._modificationCount += 1
|
self._modificationCount += 1
|
||||||
self._undoStack.beginMacro(name)
|
self._undoStack.beginMacro(name)
|
||||||
|
|
||||||
@Slot()
|
@Slot()
|
||||||
def endModification(self):
|
def endModification(self):
|
||||||
""" Ends a Graph modification. Must match a call to beginModification. """
|
""" Ends a Graph modification. Must match a call to beginModification. """
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue