From 4430a15a2fc7141b13256bb73289c578dbd8533d Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Thu, 22 Mar 2018 16:34:11 +0100 Subject: [PATCH] Remove needlessly specific super call There is only one parent. Contributes to issue CURA-5128. --- plugins/GCodeGzReader/GCodeGzReader.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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):