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:
authorfieldOfView <aldo@fieldofview.com>2020-01-14 23:56:06 +0300
committerfieldOfView <aldo@fieldofview.com>2020-01-14 23:56:06 +0300
commit6abf916ced39f122bbd2f17471f0a82809740c08 (patch)
tree92d8f328816f966f2da8e3b1baf34f51c6a6908c /cura/OneAtATimeIterator.py
parent9f023eb28ea85318861a3e7ca86c6dc40b569b1f (diff)
Fix typing in __init__ methods to appease MYPY
Diffstat (limited to 'cura/OneAtATimeIterator.py')
-rw-r--r--cura/OneAtATimeIterator.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cura/OneAtATimeIterator.py b/cura/OneAtATimeIterator.py
index b77e1f3982..3373f2104f 100644
--- a/cura/OneAtATimeIterator.py
+++ b/cura/OneAtATimeIterator.py
@@ -122,6 +122,6 @@ class _ObjectOrder:
# \param order List of indices in which to print objects, ordered by printing
# order.
# \param todo: List of indices which are not yet inserted into the order list.
- def __init__(self, order: List[SceneNode], todo: List[SceneNode]):
+ def __init__(self, order: List[SceneNode], todo: List[SceneNode]) -> None:
self.order = order
self.todo = todo