Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGhostkeeper <rubend@tutanota.com>2019-08-29 15:15:34 +0300
committerGhostkeeper <rubend@tutanota.com>2019-08-29 15:15:34 +0300
commitcead90c5bacdb519c93b020fb1cce13d64706042 (patch)
tree8abca8631a313061ac9404f56151087870253034 /plugins/TrimeshReader
parent6c84f0dbb677c8f452468106fade364f90b0eba2 (diff)
Fix class name
Oops. Contributes to issue CURA-6739.
Diffstat (limited to 'plugins/TrimeshReader')
-rw-r--r--plugins/TrimeshReader/TrimeshReader.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/TrimeshReader/TrimeshReader.py b/plugins/TrimeshReader/TrimeshReader.py
index f59bc70362..d719e3dbc8 100644
--- a/plugins/TrimeshReader/TrimeshReader.py
+++ b/plugins/TrimeshReader/TrimeshReader.py
@@ -17,7 +17,7 @@ from cura.Scene.CuraSceneNode import CuraSceneNode # To create a node in the sc
from cura.Scene.SliceableObjectDecorator import SliceableObjectDecorator # Added to the resulting scene node.
## Class that leverages Trimesh to import files.
-class Trimesh(MeshReader):
+class TrimeshReader(MeshReader):
def __init__(self) -> None:
super().__init__()