From ad7fb1c028433621a9f71ab01bbda2ca827ffe74 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 29 Nov 2017 18:00:41 +1100 Subject: Cleanup: Python imports Split over lines to diff more easily. --- release/scripts/modules/bpy/__init__.py | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) (limited to 'release/scripts/modules/bpy') 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 -- cgit v1.2.3