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 /mesh_inset
parenteb8c24066d448533e243106d6c5fa12d18f3e412 (diff)
Cleanup: imports (formatting)
Diffstat (limited to 'mesh_inset')
-rw-r--r--mesh_inset/__init__.py19
1 files changed, 11 insertions, 8 deletions
diff --git a/mesh_inset/__init__.py b/mesh_inset/__init__.py
index d0654682..19d8e711 100644
--- a/mesh_inset/__init__.py
+++ b/mesh_inset/__init__.py
@@ -34,19 +34,22 @@ bl_info = {
if "bpy" in locals():
import importlib
else:
- from . import geom
- from . import model
- from . import offset
- from . import triquad
+ from . import (
+ geom,
+ model,
+ offset,
+ triquad,
+ )
import math
import bpy
import bmesh
import mathutils
-from bpy.props import (BoolProperty,
- EnumProperty,
- FloatProperty,
- )
+from bpy.props import (
+ BoolProperty,
+ EnumProperty,
+ FloatProperty,
+ )
class Inset(bpy.types.Operator):