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
parent9f023eb28ea85318861a3e7ca86c6dc40b569b1f (diff)
Fix typing in __init__ methods to appease MYPY
-rw-r--r--cura/CuraPackageManager.py2
-rw-r--r--cura/OneAtATimeIterator.py2
-rw-r--r--cura/Operations/PlatformPhysicsOperation.py2
-rw-r--r--cura/Operations/SetParentOperation.py2
-rw-r--r--plugins/PostProcessingPlugin/scripts/Stretch.py2
-rw-r--r--plugins/SimulationView/SimulationViewProxy.py2
-rw-r--r--plugins/UM3NetworkPrinting/src/Models/Http/ClusterPrinterMaterialStationSlot.py2
7 files changed, 7 insertions, 7 deletions
diff --git a/cura/CuraPackageManager.py b/cura/CuraPackageManager.py
index 99f2072644..a0d3a8d44a 100644
--- a/cura/CuraPackageManager.py
+++ b/cura/CuraPackageManager.py
@@ -15,7 +15,7 @@ if TYPE_CHECKING:
class CuraPackageManager(PackageManager):
- def __init__(self, application: "QtApplication", parent: Optional["QObject"] = None):
+ def __init__(self, application: "QtApplication", parent: Optional["QObject"] = None) -> None:
super().__init__(application, parent)
def initialize(self) -> None:
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
diff --git a/cura/Operations/PlatformPhysicsOperation.py b/cura/Operations/PlatformPhysicsOperation.py
index 5aaa2ad94f..0d69320eec 100644
--- a/cura/Operations/PlatformPhysicsOperation.py
+++ b/cura/Operations/PlatformPhysicsOperation.py
@@ -8,7 +8,7 @@ from UM.Scene.SceneNode import SceneNode
## A specialised operation designed specifically to modify the previous operation.
class PlatformPhysicsOperation(Operation):
- def __init__(self, node: SceneNode, translation: Vector):
+ def __init__(self, node: SceneNode, translation: Vector) -> None:
super().__init__()
self._node = node
self._old_transformation = node.getLocalTransformation()
diff --git a/cura/Operations/SetParentOperation.py b/cura/Operations/SetParentOperation.py
index 7efe2618fd..7d71572a93 100644
--- a/cura/Operations/SetParentOperation.py
+++ b/cura/Operations/SetParentOperation.py
@@ -14,7 +14,7 @@ class SetParentOperation(Operation.Operation):
#
# \param node The node which will be reparented.
# \param parent_node The node which will be the parent.
- def __init__(self, node: SceneNode, parent_node: Optional[SceneNode]):
+ def __init__(self, node: SceneNode, parent_node: Optional[SceneNode]) -> None:
super().__init__()
self._node = node
self._parent = parent_node
diff --git a/plugins/PostProcessingPlugin/scripts/Stretch.py b/plugins/PostProcessingPlugin/scripts/Stretch.py
index 20eef60ef2..3899bd2c50 100644
--- a/plugins/PostProcessingPlugin/scripts/Stretch.py
+++ b/plugins/PostProcessingPlugin/scripts/Stretch.py
@@ -35,7 +35,7 @@ class GCodeStep():
Class to store the current value of each G_Code parameter
for any G-Code step
"""
- def __init__(self, step, in_relative_movement: bool = False):
+ def __init__(self, step, in_relative_movement: bool = False) -> None:
self.step = step
self.step_x = 0
self.step_y = 0
diff --git a/plugins/SimulationView/SimulationViewProxy.py b/plugins/SimulationView/SimulationViewProxy.py
index 1183244ab3..ce2c336257 100644
--- a/plugins/SimulationView/SimulationViewProxy.py
+++ b/plugins/SimulationView/SimulationViewProxy.py
@@ -11,7 +11,7 @@ if TYPE_CHECKING:
class SimulationViewProxy(QObject):
- def __init__(self, simulation_view: "SimulationView", parent=None):
+ def __init__(self, simulation_view: "SimulationView", parent=None) -> None:
super().__init__(parent)
self._simulation_view = simulation_view
self._current_layer = 0
diff --git a/plugins/UM3NetworkPrinting/src/Models/Http/ClusterPrinterMaterialStationSlot.py b/plugins/UM3NetworkPrinting/src/Models/Http/ClusterPrinterMaterialStationSlot.py
index 80deb1c9a8..b9c40592e5 100644
--- a/plugins/UM3NetworkPrinting/src/Models/Http/ClusterPrinterMaterialStationSlot.py
+++ b/plugins/UM3NetworkPrinting/src/Models/Http/ClusterPrinterMaterialStationSlot.py
@@ -14,7 +14,7 @@ class ClusterPrinterMaterialStationSlot(ClusterPrintCoreConfiguration):
# \param material_remaining: How much material is remaining on the spool (between 0 and 1, or -1 for missing data).
# \param material_empty: Whether the material spool is too empty to be used.
def __init__(self, slot_index: int, compatible: bool, material_remaining: float,
- material_empty: Optional[bool] = False, **kwargs):
+ material_empty: Optional[bool] = False, **kwargs) -> None:
self.slot_index = slot_index
self.compatible = compatible
self.material_remaining = material_remaining