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:
authorGhostkeeper <rubend@tutanota.com>2017-12-28 16:28:12 +0300
committerGhostkeeper <rubend@tutanota.com>2017-12-28 16:28:12 +0300
commit4b9ddc186a8ba870ea3cfb761c2d257ec3f9616d (patch)
tree090cac02ca9e3b7ecdaba1c8a9f2bb657f56cf99 /plugins/X3DReader
parentd0a3575c0c0b7065f7f6583bc4e04901dac6a725 (diff)
Code style: Space after binary operator
Contributes to issue CURA-4672.
Diffstat (limited to 'plugins/X3DReader')
-rw-r--r--plugins/X3DReader/X3DReader.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/X3DReader/X3DReader.py b/plugins/X3DReader/X3DReader.py
index e4a59dcdaa..8280af936d 100644
--- a/plugins/X3DReader/X3DReader.py
+++ b/plugins/X3DReader/X3DReader.py
@@ -184,7 +184,7 @@ class X3DReader(MeshReader):
got_center = (center.x != 0 or center.y != 0 or center.z != 0)
T = self.transform
- if trans.x != 0 or trans.y != 0 or trans.z !=0:
+ if trans.x != 0 or trans.y != 0 or trans.z != 0:
T.translate(trans)
if got_center:
T.translate(center)