Cleanup: triple quotes for docstrings
This commit is contained in:
@@ -24,7 +24,7 @@ from bpy.props import BoolProperty
|
||||
|
||||
|
||||
class VIEW3D_OT_edit_mesh_extrude_individual_move(Operator):
|
||||
"Extrude individual elements and move"
|
||||
"""Extrude individual elements and move"""
|
||||
bl_label = "Extrude Individual and Move"
|
||||
bl_idname = "view3d.edit_mesh_extrude_individual_move"
|
||||
|
||||
@@ -62,7 +62,7 @@ class VIEW3D_OT_edit_mesh_extrude_individual_move(Operator):
|
||||
|
||||
|
||||
class VIEW3D_OT_edit_mesh_extrude_move(Operator):
|
||||
"Extrude and move along normals"
|
||||
"""Extrude and move along normals"""
|
||||
bl_label = "Extrude and Move on Normals"
|
||||
bl_idname = "view3d.edit_mesh_extrude_move_normal"
|
||||
|
||||
@@ -111,7 +111,7 @@ class VIEW3D_OT_edit_mesh_extrude_move(Operator):
|
||||
|
||||
|
||||
class VIEW3D_OT_edit_mesh_extrude_shrink_fatten(Operator):
|
||||
"Extrude and move along individual normals"
|
||||
"""Extrude and move along individual normals"""
|
||||
bl_label = "Extrude and Move on Individual Normals"
|
||||
bl_idname = "view3d.edit_mesh_extrude_move_shrink_fatten"
|
||||
|
||||
@@ -128,7 +128,7 @@ class VIEW3D_OT_edit_mesh_extrude_shrink_fatten(Operator):
|
||||
|
||||
|
||||
class VIEW3D_OT_select_or_deselect_all(Operator):
|
||||
"Select element under the mouse, deselect everything is there's nothing under the mouse"
|
||||
"""Select element under the mouse, deselect everything is there's nothing under the mouse"""
|
||||
bl_label = "Select or Deselect All"
|
||||
bl_idname = "view3d.select_or_deselect_all"
|
||||
bl_options = {'UNDO'}
|
||||
@@ -220,4 +220,4 @@ classes = (
|
||||
VIEW3D_OT_edit_mesh_extrude_move,
|
||||
VIEW3D_OT_edit_mesh_extrude_shrink_fatten,
|
||||
VIEW3D_OT_select_or_deselect_all,
|
||||
)
|
||||
)
|
||||
|
Reference in New Issue
Block a user