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
parentc17c6557b4ea4bfeb4528b74703795798aedaa66 (diff)
Cleanup: Python imports
Split over lines to diff more easily.
Diffstat (limited to 'release/scripts/modules/bpy')
-rw-r--r--release/scripts/modules/bpy/__init__.py13
1 files changed, 11 insertions, 2 deletions
diff --git a/release/scripts/modules/bpy/__init__.py b/release/scripts/modules/bpy/__init__.py
index 545b891505f..6312c25065f 100644
--- a/release/scripts/modules/bpy/__init__.py
+++ b/release/scripts/modules/bpy/__init__.py
@@ -35,10 +35,19 @@ __all__ = (
# internal blender C module
-from _bpy import types, props, app, data, context
+from _bpy import (
+ app,
+ context,
+ data,
+ props,
+ types,
+)
# python modules
-from . import utils, path
+from . import (
+ path,
+ utils,
+)
# fake operator module
from .ops import ops_fake_module as ops