diff options
author | Florian Apolloner <florian@apolloner.eu> | 2008-05-20 15:56:38 +0200 |
---|---|---|
committer | Florian Apolloner <florian@apolloner.eu> | 2008-05-20 15:56:38 +0200 |
commit | 35ddb45b41b3de2d4f783608ad8d8752f6557997 (patch) | |
tree | aa5cc1acfcf65a4c7889846c227e85386090f719 /lib/git_python/lazy.py | |
parent | 1dc09f0ece61ef2bd629e8bfe532aa24f4f8e0c2 (diff) | |
download | gitpython-35ddb45b41b3de2d4f783608ad8d8752f6557997.tar.gz |
removed unneeded spaces
Diffstat (limited to 'lib/git_python/lazy.py')
-rw-r--r-- | lib/git_python/lazy.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/git_python/lazy.py b/lib/git_python/lazy.py index f6d31e8d..66e56c2b 100644 --- a/lib/git_python/lazy.py +++ b/lib/git_python/lazy.py @@ -1,6 +1,6 @@ class LazyMixin(object): lazy_properties = [] - + def __init__(self): self.__baked__ = False @@ -21,6 +21,6 @@ class LazyMixin(object): return self.__bake__() self.__baked__ = True - + def __bake_it__(self): self.__baked__ = True |