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:
authorJaime van Kessel <nallath@gmail.com>2020-04-10 14:46:19 +0300
committerJaime van Kessel <nallath@gmail.com>2020-04-10 14:46:19 +0300
commitfe27da5e8a945d8b79834aa5779b323045f7e742 (patch)
treeb6117c03968be8722cc4dbff2c3dfcacc60ab9ca /plugins/ModelChecker
parent6a6ad6e81523b1cd7a5412d8e973d08d872ba188 (diff)
Remove a number of unused variables
Diffstat (limited to 'plugins/ModelChecker')
-rw-r--r--plugins/ModelChecker/ModelChecker.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/ModelChecker/ModelChecker.py b/plugins/ModelChecker/ModelChecker.py
index 00e87139d5..5472a96809 100644
--- a/plugins/ModelChecker/ModelChecker.py
+++ b/plugins/ModelChecker/ModelChecker.py
@@ -79,7 +79,7 @@ class ModelChecker(QObject, Extension):
# This function can be triggered in the middle of a machine change, so do not proceed if the machine change
# has not done yet.
try:
- extruder = global_container_stack.extruderList[int(node_extruder_position)]
+ global_container_stack.extruderList[int(node_extruder_position)]
except IndexError:
Application.getInstance().callLater(lambda: self.onChanged.emit())
return False