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:
authorCampbell Barton <ideasman42@gmail.com>2015-04-10 04:43:35 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-04-10 04:43:35 +0300
commit73bf474a6df0d2ad6524da9449b01a02620b669f (patch)
tree47e51aed6d0158e032ab9b1321e6f80d554914ac /render_copy_settings
parenteb8c24066d448533e243106d6c5fa12d18f3e412 (diff)
Cleanup: imports (formatting)
Diffstat (limited to 'render_copy_settings')
-rw-r--r--render_copy_settings/__init__.py18
1 files changed, 12 insertions, 6 deletions
diff --git a/render_copy_settings/__init__.py b/render_copy_settings/__init__.py
index 7ca39844..0db084b7 100644
--- a/render_copy_settings/__init__.py
+++ b/render_copy_settings/__init__.py
@@ -39,15 +39,21 @@ if "bpy" in locals():
importlib.reload(translations)
else:
- from . import operator, panel, translations
+ from . import (
+ operator,
+ panel,
+ translations,
+ )
import bpy
-from bpy.props import (StringProperty,
- BoolProperty,
- IntProperty,
- CollectionProperty,
- PointerProperty)
+from bpy.props import (
+ StringProperty,
+ BoolProperty,
+ IntProperty,
+ CollectionProperty,
+ PointerProperty,
+ )
########################################################################################################################
# Global properties for the script, for UI (as there’s no way to let them in the operator…).