mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-06 22:47:29 -06: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
1 changed files with 1 additions and 1 deletions
|
@ -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):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue