From 1b1029a3e07816b46c9476c06048a63ccecb8a44 Mon Sep 17 00:00:00 2001 From: Nino van Hooff Date: Wed, 2 Oct 2019 13:13:32 +0200 Subject: [PATCH] Use 2 leading spaces for doxygen documentation CURA-6785 --- cura/OneAtATimeIterator.py | 4 ++-- 1 file 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