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:
authorGhostkeeper <rubend@tutanota.com>2018-03-22 18:34:11 +0300
committerGhostkeeper <rubend@tutanota.com>2018-03-22 18:34:11 +0300
commit4430a15a2fc7141b13256bb73289c578dbd8533d (patch)
tree198111f3686168292dd5235991632c3c1b968074 /plugins/GCodeGzReader
parent378cde202c0a484fb79f5b2e804fdd1d30aeaa4c (diff)
Remove needlessly specific super call
There is only one parent. Contributes to issue CURA-5128.
Diffstat (limited to 'plugins/GCodeGzReader')
-rw-r--r--plugins/GCodeGzReader/GCodeGzReader.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/GCodeGzReader/GCodeGzReader.py b/plugins/GCodeGzReader/GCodeGzReader.py
index ec473fb299..9d671a70bf 100644
--- a/plugins/GCodeGzReader/GCodeGzReader.py
+++ b/plugins/GCodeGzReader/GCodeGzReader.py
@@ -18,7 +18,7 @@ from UM.Scene.SceneNode import SceneNode #For typing.
class GCodeGzReader(MeshReader):
def __init__(self):
- super(GCodeGzReader, self).__init__()
+ super().__init__()
self._supported_extensions = [".gcode.gz"]
def read(self, file_name):