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>2011-09-08 09:26:39 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-09-08 09:26:39 +0400
commitb25a7c909950ef9d8d0528150fc6f761b73ab6f0 (patch)
tree6c7050f915ba34b6926d607294e9e7c5ce255a43 /mesh_inset
parent48d15df82ab093e69c5f9845419822d0749e2d77 (diff)
pedantic pep8 edits
Diffstat (limited to 'mesh_inset')
-rw-r--r--mesh_inset/__init__.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/mesh_inset/__init__.py b/mesh_inset/__init__.py
index d589cabd..a9adbf37 100644
--- a/mesh_inset/__init__.py
+++ b/mesh_inset/__init__.py
@@ -44,7 +44,10 @@ else:
import math
import bpy
import mathutils
-from bpy.props import *
+from bpy.props import (BoolProperty,
+ EnumProperty,
+ FloatProperty,
+ )
class Inset(bpy.types.Operator):