X-Git-Url: http://git.veekun.com/zzz-floof.git/blobdiff_plain/f267b2f2841d407dcdf9c3c0f5406f8c10403ccb..f263f51648eef9739caa92e19ec45b32d7a1e49e:/floof/model/search.py diff --git a/floof/model/search.py b/floof/model/search.py index 2296491..fb86f35 100644 --- a/floof/model/search.py +++ b/floof/model/search.py @@ -1,7 +1,6 @@ from elixir import * # from users import User -from floof.lib.search import do_search class SavedSearch(Entity): string = Field(Unicode) # I tried calling this query, but it broke elixir @@ -13,6 +12,9 @@ class SavedSearch(Entity): @property def results(self): + # This caused some cyclic dependencies when I tried importing it + # at the module level. I wonder why that is... + from floof.lib.search import do_search return do_search(self.string)