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 /plugins/GCodeReader
parent1e33360c359373f7acbf95ca9706514d12c0dd7f (diff)
Remove trailing whitespace from Python files
Diffstat (limited to 'plugins/GCodeReader')
-rw-r--r--plugins/GCodeReader/FlavorParser.py2
-rw-r--r--plugins/GCodeReader/RepRapFlavorParser.py4
2 files changed, 3 insertions, 3 deletions
diff --git a/plugins/GCodeReader/FlavorParser.py b/plugins/GCodeReader/FlavorParser.py
index bcb7efc816..2d0bd7b7c0 100644
--- a/plugins/GCodeReader/FlavorParser.py
+++ b/plugins/GCodeReader/FlavorParser.py
@@ -237,7 +237,7 @@ class FlavorParser:
def _gCode92(self, position: Position, params: PositionOptional, path: List[List[Union[float, int]]]) -> Position:
"""Reset the current position to the values specified.
-
+
For example: G92 X10 will set the X to 10 without any physical motion.
"""
diff --git a/plugins/GCodeReader/RepRapFlavorParser.py b/plugins/GCodeReader/RepRapFlavorParser.py
index 05f86beab0..10b7b78587 100644
--- a/plugins/GCodeReader/RepRapFlavorParser.py
+++ b/plugins/GCodeReader/RepRapFlavorParser.py
@@ -21,7 +21,7 @@ class RepRapFlavorParser(FlavorParser.FlavorParser):
def _gCode90(self, position, params, path):
"""Set the absolute positioning
-
+
RepRapFlavor code G90 sets position of X, Y, Z to absolute
For absolute E, M82 is used
"""
@@ -30,7 +30,7 @@ class RepRapFlavorParser(FlavorParser.FlavorParser):
def _gCode91(self, position, params, path):
"""Set the relative positioning
-
+
RepRapFlavor code G91 sets position of X, Y, Z to relative
For relative E, M83 is used
"""