From 73bf474a6df0d2ad6524da9449b01a02620b669f Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 10 Apr 2015 11:43:35 +1000 Subject: Cleanup: imports (formatting) --- mesh_inset/__init__.py | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) (limited to 'mesh_inset') 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): -- cgit v1.2.3