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:
authorBastien Montagne <montagne29@wanadoo.fr>2012-07-03 13:01:43 +0400
committerBastien Montagne <montagne29@wanadoo.fr>2012-07-03 13:01:43 +0400
commit2dc06f6d50d14a97ff0c37f88b6979d18a0fd279 (patch)
tree60728ddc2bb420bcf11901e27a11a677276cb889 /add_mesh_pipe_joint.py
parent842985a49773634076d45f845957216006fc683e (diff)
Style edit (mostly), use """ for docstrings (not ''').
Diffstat (limited to 'add_mesh_pipe_joint.py')
-rw-r--r--add_mesh_pipe_joint.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/add_mesh_pipe_joint.py b/add_mesh_pipe_joint.py
index b11ed2bf..aa41532e 100644
--- a/add_mesh_pipe_joint.py
+++ b/add_mesh_pipe_joint.py
@@ -123,7 +123,7 @@ def createFaces(vertIdx1, vertIdx2, closed=False, flipped=False):
class AddElbowJoint(bpy.types.Operator):
# Create the vertices and polygons for a simple elbow (bent pipe).
- '''Add an Elbow pipe mesh'''
+ """Add an Elbow pipe mesh"""
bl_idname = "mesh.primitive_elbow_joint_add"
bl_label = "Add Pipe Elbow"
bl_options = {'REGISTER', 'UNDO', 'PRESET'}
@@ -224,7 +224,7 @@ class AddElbowJoint(bpy.types.Operator):
class AddTeeJoint(bpy.types.Operator):
# Create the vertices and polygons for a simple tee (T) joint.
# The base arm of the T can be positioned in an angle if needed though.
- '''Add a Tee-Joint mesh'''
+ """Add a Tee-Joint mesh"""
bl_idname = "mesh.primitive_tee_joint_add"
bl_label = "Add Pipe Tee-Joint"
bl_options = {'REGISTER', 'UNDO', 'PRESET'}
@@ -401,7 +401,7 @@ class AddTeeJoint(bpy.types.Operator):
class AddWyeJoint(bpy.types.Operator):
- '''Add a Wye-Joint mesh'''
+ """Add a Wye-Joint mesh"""
bl_idname = "mesh.primitive_wye_joint_add"
bl_label = "Add Pipe Wye-Joint"
bl_options = {'REGISTER', 'UNDO', 'PRESET'}
@@ -595,7 +595,7 @@ class AddWyeJoint(bpy.types.Operator):
class AddCrossJoint(bpy.types.Operator):
- '''Add a Cross-Joint mesh'''
+ """Add a Cross-Joint mesh"""
# Create the vertices and polygons for a coss (+ or X) pipe joint.
bl_idname = "mesh.primitive_cross_joint_add"
bl_label = "Add Pipe Cross-Joint"
@@ -850,7 +850,7 @@ class AddCrossJoint(bpy.types.Operator):
class AddNJoint(bpy.types.Operator):
- '''Add a N-Joint mesh'''
+ """Add a N-Joint mesh"""
# Create the vertices and polygons for a regular n-joint.
bl_idname = "mesh.primitive_n_joint_add"
bl_label = "Add Pipe N-Joint"