summaryrefslogtreecommitdiff
path: root/lib/git_python/lazy.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/git_python/lazy.py')
-rw-r--r--lib/git_python/lazy.py4
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