[Bf-extensions-cvs] [efa2c23] master: MeasureIt: Missed needless from import in previous commit

lijenstina noreply at git.blender.org
Sat Apr 29 17:23:08 CEST 2017


Commit: efa2c23a7e0512fd8b9d97c1a2295e7a45731a8e
Author: lijenstina
Date:   Sat Apr 29 17:22:27 2017 +0200
Branches: master
https://developer.blender.org/rBAefa2c23a7e0512fd8b9d97c1a2295e7a45731a8e

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

===================================================================

M	measureit/__init__.py

===================================================================

diff --git a/measureit/__init__.py b/measureit/__init__.py
index e596638..ec4ee2b 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,



More information about the Bf-extensions-cvs mailing list