mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-11 16:09:01 +08:00
Remove needlessly specific super call
There is only one parent. Contributes to issue CURA-5128.
This commit is contained in:
parent
378cde202c
commit
4430a15a2f
@ -18,7 +18,7 @@ from UM.Scene.SceneNode import SceneNode #For typing.
|
|||||||
class GCodeGzReader(MeshReader):
|
class GCodeGzReader(MeshReader):
|
||||||
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
super(GCodeGzReader, self).__init__()
|
super().__init__()
|
||||||
self._supported_extensions = [".gcode.gz"]
|
self._supported_extensions = [".gcode.gz"]
|
||||||
|
|
||||||
def read(self, file_name):
|
def read(self, file_name):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user