Remove duplicated mime type

CURA-11403
This commit is contained in:
c.lamboo 2024-02-21 11:23:05 +01:00
parent ae686bcad9
commit 08b70252a4
3 changed files with 25 additions and 31 deletions

View file

@ -41,18 +41,11 @@ class ThreeMFReader(MeshReader):
MimeTypeDatabase.addMimeType(
MimeType(
name = "application/vnd.ms-package.3dmanufacturing-3dmodel+xml",
name="application/vnd.ms-package.3dmanufacturing-3dmodel+xml",
comment="3MF",
suffixes=["3mf"]
)
)
MimeTypeDatabase.addMimeType(
MimeType(
name="application/x-ucp",
comment="UCP",
suffixes=["3mf"]
)
)
self._supported_extensions = [".3mf"]
self._root = None