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
path: root/btrace
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2017-09-02 12:33:06 +0300
committerCampbell Barton <ideasman42@gmail.com>2017-09-02 12:33:06 +0300
commit131ea02a4c0cc0c245c39488113fbe4b433afdee (patch)
treef2d2bce6cebee2f3e6673e5a8205d7ad8e91f2bf /btrace
parentf4d6aad738ae8b368841aee77e0008480fe42f25 (diff)
Cleanup: quiet strict name warnings for addons a..h.
Diffstat (limited to 'btrace')
-rw-r--r--btrace/__init__.py38
-rw-r--r--btrace/bTrace_props.py1
2 files changed, 20 insertions, 19 deletions
diff --git a/btrace/__init__.py b/btrace/__init__.py
index c1f62512..8f00f2c3 100644
--- a/btrace/__init__.py
+++ b/btrace/__init__.py
@@ -39,27 +39,27 @@ else:
import bpy
from bpy.types import AddonPreferences
from .bTrace_props import (
- TracerProperties,
- addTracerObjectPanel,
- )
+ TracerProperties,
+ addTracerObjectPanel,
+)
from .bTrace import (
- OBJECT_OT_convertcurve,
- OBJECT_OT_objecttrace,
- OBJECT_OT_objectconnect,
- OBJECT_OT_writing,
- OBJECT_OT_particletrace,
- OBJECT_OT_traceallparticles,
- OBJECT_OT_curvegrow,
- OBJECT_OT_reset,
- OBJECT_OT_fcnoise,
- OBJECT_OT_meshfollow,
- OBJECT_OT_materialChango,
- OBJECT_OT_clearColorblender,
- )
+ OBJECT_OT_convertcurve,
+ OBJECT_OT_objecttrace,
+ OBJECT_OT_objectconnect,
+ OBJECT_OT_writing,
+ OBJECT_OT_particletrace,
+ OBJECT_OT_traceallparticles,
+ OBJECT_OT_curvegrow,
+ OBJECT_OT_reset,
+ OBJECT_OT_fcnoise,
+ OBJECT_OT_meshfollow,
+ OBJECT_OT_materialChango,
+ OBJECT_OT_clearColorblender,
+)
from bpy.props import (
- EnumProperty,
- PointerProperty,
- )
+ EnumProperty,
+ PointerProperty,
+)
# Add-on Preferences
diff --git a/btrace/bTrace_props.py b/btrace/bTrace_props.py
index bff3b88f..70c57532 100644
--- a/btrace/bTrace_props.py
+++ b/btrace/bTrace_props.py
@@ -568,6 +568,7 @@ class TracerProperties(PropertyGroup):
# Draw Brush panel in Toolbar
class addTracerObjectPanel(Panel):
+ bl_idname = "BTRACE_PT_object_brush"
bl_label = "Btrace"
bl_space_type = "VIEW_3D"
bl_region_type = "TOOLS"