Remove unused variable

The variable name is re-used lower in the code. This value is unused though.
This commit is contained in:
Ghostkeeper 2018-03-16 15:08:30 +01:00
parent 2aaaf106b4
commit 4d5013d3ad
No known key found for this signature in database
GPG key ID: 5252B696FB5E7C7A

View file

@ -111,7 +111,6 @@ class GCodeWriter(MeshWriter):
prefix = ";SETTING_" + str(GCodeWriter.version) + " " # The prefix to put before each line. prefix = ";SETTING_" + str(GCodeWriter.version) + " " # The prefix to put before each line.
prefix_length = len(prefix) prefix_length = len(prefix)
quality_name = stack.qualityChanges.getName()
quality_type = stack.quality.getMetaDataEntry("quality_type") quality_type = stack.quality.getMetaDataEntry("quality_type")
container_with_profile = stack.qualityChanges container_with_profile = stack.qualityChanges
if container_with_profile.getId() == "empty_quality_changes": if container_with_profile.getId() == "empty_quality_changes":