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:
Diffstat (limited to 'io_scene_x3d')
-rw-r--r--io_scene_x3d/__init__.py20
1 files changed, 13 insertions, 7 deletions
diff --git a/io_scene_x3d/__init__.py b/io_scene_x3d/__init__.py
index 4d66eda3..b0dc3673 100644
--- a/io_scene_x3d/__init__.py
+++ b/io_scene_x3d/__init__.py
@@ -38,13 +38,19 @@ if "bpy" in locals():
importlib.reload(export_x3d)
import bpy
-from bpy.props import StringProperty, BoolProperty, EnumProperty, FloatProperty
-from bpy_extras.io_utils import (ImportHelper,
- ExportHelper,
- orientation_helper_factory,
- axis_conversion,
- path_reference_mode,
- )
+from bpy.props import (
+ BoolProperty,
+ EnumProperty,
+ FloatProperty,
+ StringProperty,
+ )
+from bpy_extras.io_utils import (
+ ImportHelper,
+ ExportHelper,
+ orientation_helper_factory,
+ axis_conversion,
+ path_reference_mode,
+ )
IOX3DOrientationHelper = orientation_helper_factory("IOX3DOrientationHelper", axis_forward='Z', axis_up='Y')