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>2019-10-02 14:13:32 +0300
committerNino van Hooff <ninovanhooff@gmail.com>2019-10-02 14:13:32 +0300
commit1b1029a3e07816b46c9476c06048a63ccecb8a44 (patch)
treec8ca9434638b1b8471561086c78bf2170f54b964 /cura/OneAtATimeIterator.py
parent95120300601c5a8391a3909c7291f95248d35052 (diff)
Use 2 leading spaces for doxygen documentation
CURA-6785
Diffstat (limited to 'cura/OneAtATimeIterator.py')
-rw-r--r--cura/OneAtATimeIterator.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/cura/OneAtATimeIterator.py b/cura/OneAtATimeIterator.py
index 4d420f6d05..b77e1f3982 100644
--- a/cura/OneAtATimeIterator.py
+++ b/cura/OneAtATimeIterator.py
@@ -66,7 +66,7 @@ class OneAtATimeIterator(Iterator.Iterator):
self._node_stack = [] #No result found!
- # Check if first object can be printed before the provided list (using the hit map)
+ # Check if first object can be printed before the provided list (using the hit map)
def _checkHitMultiple(self, node: SceneNode, other_nodes: List[SceneNode]) -> bool:
node_index = self._original_node_list.index(node)
for other_node in other_nodes:
@@ -92,7 +92,7 @@ class OneAtATimeIterator(Iterator.Iterator):
score_b = sum(self._hit_map[self._original_node_list.index(b)])
return score_a - score_b
- ## Checks if A can be printed before B
+ ## Checks if A can be printed before B
def _checkHit(self, a: SceneNode, b: SceneNode) -> bool:
if a == b:
return False