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

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'io_mesh_stl/__init__.py')
-rw-r--r--io_mesh_stl/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/io_mesh_stl/__init__.py b/io_mesh_stl/__init__.py
index 9df62d1c..1088490a 100644
--- a/io_mesh_stl/__init__.py
+++ b/io_mesh_stl/__init__.py
@@ -64,7 +64,7 @@ from bpy.types import Operator, OperatorFileListElement
class ImportSTL(Operator, ImportHelper):
- '''Load STL triangle mesh data'''
+ """Load STL triangle mesh data"""
bl_idname = "import_mesh.stl"
bl_label = "Import STL"
bl_options = {'UNDO'}
@@ -108,7 +108,7 @@ class ImportSTL(Operator, ImportHelper):
class ExportSTL(Operator, ExportHelper):
- '''Save STL triangle mesh data from the active object'''
+ """Save STL triangle mesh data from the active object"""
bl_idname = "export_mesh.stl"
bl_label = "Export STL"