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:
authorlijenstina <lijenstina@gmail.com>2017-04-29 18:22:27 +0300
committerlijenstina <lijenstina@gmail.com>2017-04-29 18:22:27 +0300
commitefa2c23a7e0512fd8b9d97c1a2295e7a45731a8e (patch)
tree317121a8f4fe25959a82a64701282c17c8847612 /measureit
parent959ba11a2493751494f66d704df2d0e76e2dc6a3 (diff)
MeasureIt: Missed needless from import in previous commit
Like the title says, AddonPreferences was called separately Note: there is the import sys and os that should be maybe removed, however that needs more checking Sorry for the noise
Diffstat (limited to 'measureit')
-rw-r--r--measureit/__init__.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/measureit/__init__.py b/measureit/__init__.py
index e5966383..ec4ee2bd 100644
--- a/measureit/__init__.py
+++ b/measureit/__init__.py
@@ -55,12 +55,10 @@ else:
# noinspection PyUnresolvedReferences
import bpy
from bpy.types import (
+ AddonPreferences,
Scene,
WindowManager,
)
-from bpy.types import (
- AddonPreferences,
- )
from bpy.props import (
FloatVectorProperty,
IntProperty,