mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-14 12:36:02 +08:00
Clean up __init__
This commit is contained in:
parent
c7956542c4
commit
44c64c4ac7
@ -20,7 +20,7 @@ import xml.etree.ElementTree as ET
|
|||||||
## Base implementation for reading 3MF files. Has no support for textures. Only loads meshes!
|
## Base implementation for reading 3MF files. Has no support for textures. Only loads meshes!
|
||||||
class ThreeMFReader(MeshReader):
|
class ThreeMFReader(MeshReader):
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
super(ThreeMFReader, self).__init__()
|
super().__init__()
|
||||||
self._supported_extensions = [".3mf"]
|
self._supported_extensions = [".3mf"]
|
||||||
|
|
||||||
self._namespaces = {
|
self._namespaces = {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user