From 2dc06f6d50d14a97ff0c37f88b6979d18a0fd279 Mon Sep 17 00:00:00 2001 From: Bastien Montagne Date: Tue, 3 Jul 2012 09:01:43 +0000 Subject: Style edit (mostly), use """ for docstrings (not '''). --- object_fracture/fracture_ops.py | 10 +++++----- object_fracture/fracture_setup.py | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) (limited to 'object_fracture') diff --git a/object_fracture/fracture_ops.py b/object_fracture/fracture_ops.py index 7a7ec387..87588aa4 100644 --- a/object_fracture/fracture_ops.py +++ b/object_fracture/fracture_ops.py @@ -341,7 +341,7 @@ def fracture_group(context, group): class FractureSimple(bpy.types.Operator): - '''Split object with boolean operations for simulation, uses an object''' + """Split object with boolean operations for simulation, uses an object""" bl_idname = "object.fracture_simple" bl_label = "Fracture Object" bl_options = {'REGISTER', 'UNDO'} @@ -387,7 +387,7 @@ class FractureSimple(bpy.types.Operator): class FractureGroup(bpy.types.Operator): - '''Split object with boolean operations for simulation, uses a group''' + """Split object with boolean operations for simulation, uses a group""" bl_idname = "object.fracture_group" bl_label = "Fracture Object (Group)" bl_options = {'REGISTER', 'UNDO'} @@ -447,7 +447,7 @@ def import_object(obname): class ImportFractureRecorder(bpy.types.Operator): - '''Imports a rigidbody recorder''' + """Imports a rigidbody recorder""" bl_idname = "object.import_fracture_recorder" bl_label = "Add Rigidbody Recorder (Fracture)" bl_options = {'REGISTER', 'UNDO'} @@ -459,7 +459,7 @@ class ImportFractureRecorder(bpy.types.Operator): class ImportFractureBomb(bpy.types.Operator): - '''Import a bomb''' + """Import a bomb""" bl_idname = "object.import_fracture_bomb" bl_label = "Add Bomb (Fracture)" bl_options = {'REGISTER', 'UNDO'} @@ -471,7 +471,7 @@ class ImportFractureBomb(bpy.types.Operator): class ImportFractureProjectile(bpy.types.Operator, ): - '''Imports a projectile''' + """Imports a projectile""" bl_idname = "object.import_fracture_projectile" bl_label = "Add Projectile (Fracture)" bl_options = {'REGISTER', 'UNDO'} diff --git a/object_fracture/fracture_setup.py b/object_fracture/fracture_setup.py index 3ab93821..02c435f8 100644 --- a/object_fracture/fracture_setup.py +++ b/object_fracture/fracture_setup.py @@ -62,7 +62,7 @@ def setupshards(context): class SetupFractureShards(bpy.types.Operator): - '''''' + """""" bl_idname = "object.setup_fracture_shards" bl_label = "Setup Fracture Shards" bl_options = {'REGISTER', 'UNDO'} -- cgit v1.2.3