Remove needlessly specific super call

There is only one parent.

Contributes to issue CURA-5128.
This commit is contained in:
Ghostkeeper 2018-03-22 16:34:11 +01:00
parent 378cde202c
commit 4430a15a2f
No known key found for this signature in database
GPG key ID: 5252B696FB5E7C7A

View file

@ -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):