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
path: root/cura
diff options
context:
space:
mode:
authorJoey de l'Arago <joeydelarago@gmail.com>2022-06-15 18:29:26 +0300
committerGitHub <noreply@github.com>2022-06-15 18:29:26 +0300
commite47a2d1c99a932c134b5c5e7d36784ac930688a8 (patch)
treeb028dd571967670210aebe9732d02fdde7760d56 /cura
parentb4152d29d6bd08f67037c22d23c915bd2d29629e (diff)
Update cura/Machines/Models/IntentSelectionModel.py
Co-authored-by: Casper Lamboo <c.lamboo@ultimaker.com>
Diffstat (limited to 'cura')
-rw-r--r--cura/Machines/Models/IntentSelectionModel.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cura/Machines/Models/IntentSelectionModel.py b/cura/Machines/Models/IntentSelectionModel.py
index c8c9b9974d..610b50fb50 100644
--- a/cura/Machines/Models/IntentSelectionModel.py
+++ b/cura/Machines/Models/IntentSelectionModel.py
@@ -46,7 +46,7 @@ class IntentSelectionModel(ListModel):
extruder_manager = application.getExtruderManager()
extruder_manager.extrudersChanged.connect(self._update)
- self._update_timer = QTimer() # type: QTimer
+ self._update_timer: QTimer = QTimer()
self._update_timer.setInterval(100)
self._update_timer.setSingleShot(True)
self._update_timer.timeout.connect(self._update)