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 /plugins/SimulationView
parent9f023eb28ea85318861a3e7ca86c6dc40b569b1f (diff)
Fix typing in __init__ methods to appease MYPY
Diffstat (limited to 'plugins/SimulationView')
-rw-r--r--plugins/SimulationView/SimulationViewProxy.py2
1 files changed, 1 insertions, 1 deletions
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