# HG changeset patch # User Ronny Pfannschmidt # Date 2015-02-02 20:12:35 # Node ID f38c74fbbd2ec343b32064b7b3d27eb8fff9dfd4 # Parent 6f9dae4d39d9e651eb392927c7334da34c09a0fa utils: reorder imports in lazy.py diff --git a/kallithea/lib/vcs/utils/lazy.py b/kallithea/lib/vcs/utils/lazy.py --- a/kallithea/lib/vcs/utils/lazy.py +++ b/kallithea/lib/vcs/utils/lazy.py @@ -1,3 +1,6 @@ +import threading + + class _Missing(object): def __repr__(self): @@ -41,8 +44,6 @@ class LazyProperty(object): obj.__dict__[self.__name__] = value return value -import threading - class ThreadLocalLazyProperty(LazyProperty): """