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:
authorMaurice Raybaud <mauriceraybaud@hotmail.fr>2021-05-27 19:36:18 +0300
committerMaurice Raybaud <mauriceraybaud@hotmail.fr>2021-05-27 19:36:18 +0300
commita885950276ea98dfa6a67c6d035198b59692a658 (patch)
treee9fef6e15a744e117ce303d84e4cd50227e10c19 /render_povray/scripting_properties.py
parent73c752effe0d3ac18d50ec39a1431b5cb24cd5c2 (diff)
POV : fix registering
Fix : Removed some duplicate class that caused addon register / unregister to fail after previous commit
Diffstat (limited to 'render_povray/scripting_properties.py')
-rwxr-xr-xrender_povray/scripting_properties.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/render_povray/scripting_properties.py b/render_povray/scripting_properties.py
index 3e743da3..66bb0191 100755
--- a/render_povray/scripting_properties.py
+++ b/render_povray/scripting_properties.py
@@ -17,10 +17,10 @@
# ##### END GPL LICENSE BLOCK #####
# <pep8 compliant>
-import bpy
"""Declare pov native file syntax properties controllable in UI hooks and text blocks"""
+import bpy
from bpy.utils import register_class, unregister_class
from bpy.types import PropertyGroup
from bpy.props import EnumProperty, PointerProperty
@@ -42,7 +42,9 @@ class RenderPovSettingsText(PropertyGroup):
)
-classes = (RenderPovSettingsText,)
+classes = (
+ RenderPovSettingsText,
+)
def register():