mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-12-02 23:31:42 -07:00
Fix typing in __init__ methods to appease MYPY
This commit is contained in:
parent
9f023eb28e
commit
6abf916ced
7 changed files with 7 additions and 7 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue