Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2017-11-29 10:00:41 +0300
committerCampbell Barton <ideasman42@gmail.com>2017-11-29 10:05:41 +0300
commitad7fb1c028433621a9f71ab01bbda2ca827ffe74 (patch)
tree864e0da811c59d04009f7f61ed2b170cd80dac6d /release/scripts/modules/bpy_extras/io_utils.py
parentc17c6557b4ea4bfeb4528b74703795798aedaa66 (diff)
Cleanup: Python imports
Split over lines to diff more easily.
Diffstat (limited to 'release/scripts/modules/bpy_extras/io_utils.py')
-rw-r--r--release/scripts/modules/bpy_extras/io_utils.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/release/scripts/modules/bpy_extras/io_utils.py b/release/scripts/modules/bpy_extras/io_utils.py
index a7ecd0b80c0..8a516f12b17 100644
--- a/release/scripts/modules/bpy_extras/io_utils.py
+++ b/release/scripts/modules/bpy_extras/io_utils.py
@@ -36,10 +36,10 @@ __all__ = (
import bpy
from bpy.props import (
- StringProperty,
- BoolProperty,
- EnumProperty,
- )
+ BoolProperty,
+ EnumProperty,
+ StringProperty,
+)
def _check_axis_conversion(op):