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:41:55 +0300
committerMaurice Raybaud <mauriceraybaud@hotmail.fr>2021-05-27 19:41:55 +0300
commite25068ef471c6d6cd5ee64a2eef9b7d672c57029 (patch)
tree06761f2667d2f875d10ed0fff1af1bc7c20a2bda /render_povray/scripting_properties.py
parenta885950276ea98dfa6a67c6d035198b59692a658 (diff)
Revert "POV : fix registering"
This reverts commit a885950276ea98dfa6a67c6d035198b59692a658.
Diffstat (limited to 'render_povray/scripting_properties.py')
-rwxr-xr-xrender_povray/scripting_properties.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/render_povray/scripting_properties.py b/render_povray/scripting_properties.py
index 66bb0191..3e743da3 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,9 +42,7 @@ class RenderPovSettingsText(PropertyGroup):
)
-classes = (
- RenderPovSettingsText,
-)
+classes = (RenderPovSettingsText,)
def register():