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_fbx/__init__.py')
-rw-r--r--io_scene_fbx/__init__.py25
1 files changed, 13 insertions, 12 deletions
diff --git a/io_scene_fbx/__init__.py b/io_scene_fbx/__init__.py
index 1cf2e5b6..96c5adf2 100644
--- a/io_scene_fbx/__init__.py
+++ b/io_scene_fbx/__init__.py
@@ -45,18 +45,19 @@ if "bpy" in locals():
import bpy
-from bpy.props import (StringProperty,
- BoolProperty,
- FloatProperty,
- EnumProperty,
- )
-
-from bpy_extras.io_utils import (ImportHelper,
- ExportHelper,
- orientation_helper_factory,
- path_reference_mode,
- axis_conversion,
- )
+from bpy.props import (
+ StringProperty,
+ BoolProperty,
+ FloatProperty,
+ EnumProperty,
+ )
+from bpy_extras.io_utils import (
+ ImportHelper,
+ ExportHelper,
+ orientation_helper_factory,
+ path_reference_mode,
+ axis_conversion,
+ )
IOFBXOrientationHelper = orientation_helper_factory("IOFBXOrientationHelper", axis_forward='-Z', axis_up='Y')