Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNino van Hooff <ninovanhooff@gmail.com>2020-05-29 15:30:33 +0300
committerNino van Hooff <ninovanhooff@gmail.com>2020-05-29 15:30:33 +0300
commit89f0970a887612a6819263633180d027d06224af (patch)
tree0b900495a95a234c15f893563975eb346aee6e20 /cura/MachineAction.py
parent1e33360c359373f7acbf95ca9706514d12c0dd7f (diff)
Remove trailing whitespace from Python files
Diffstat (limited to 'cura/MachineAction.py')
-rw-r--r--cura/MachineAction.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/cura/MachineAction.py b/cura/MachineAction.py
index e18c37ccb4..74b742ef4d 100644
--- a/cura/MachineAction.py
+++ b/cura/MachineAction.py
@@ -62,7 +62,7 @@ class MachineAction(QObject, PluginObject):
@pyqtSlot()
def reset(self) -> None:
"""Reset the action to it's default state.
-
+
This should not be re-implemented by child classes, instead re-implement _reset.
:py:meth:`cura.MachineAction.MachineAction._reset`
@@ -73,7 +73,7 @@ class MachineAction(QObject, PluginObject):
def _reset(self) -> None:
"""Protected implementation of reset.
-
+
See also :py:meth:`cura.MachineAction.MachineAction.reset`
"""