changeset 5031:f38c74fbbd2e

utils: reorder imports in lazy.py
author Ronny Pfannschmidt <opensource@ronnypfannschmidt.de>
date Mon, 02 Feb 2015 20:12:35 +0100
parents 6f9dae4d39d9
children 3352396a7ae3
files kallithea/lib/vcs/utils/lazy.py
diffstat 1 files changed, 3 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/kallithea/lib/vcs/utils/lazy.py	Mon Feb 02 19:28:17 2015 +0100
+++ b/kallithea/lib/vcs/utils/lazy.py	Mon Feb 02 20:12:35 2015 +0100
@@ -1,3 +1,6 @@
+import threading
+
+
 class _Missing(object):
 
     def __repr__(self):
@@ -41,8 +44,6 @@
             obj.__dict__[self.__name__] = value
         return value
 
-import threading
-
 
 class ThreadLocalLazyProperty(LazyProperty):
     """