Removed trailing spaces.
[zzz-floof.git] / floof / lib / dbhelpers.py
index 0da968b..23fd3b4 100644 (file)
@@ -3,7 +3,7 @@ def find_or_create(model, **kwargs):
     if not instance:
         instance = model(**kwargs)
     return instance
-    
+
 def update_or_create(model, get_by, update_with):
     instance = model.get_by(**get_by)
     if instance: