summaryrefslogtreecommitdiff
path: root/examples/dogpile_caching/helloworld.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/dogpile_caching/helloworld.py')
-rw-r--r--examples/dogpile_caching/helloworld.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/dogpile_caching/helloworld.py b/examples/dogpile_caching/helloworld.py
index eb565344e..6b03afbdb 100644
--- a/examples/dogpile_caching/helloworld.py
+++ b/examples/dogpile_caching/helloworld.py
@@ -2,9 +2,10 @@
"""
+from .caching_query import FromCache
from .environment import Session
from .model import Person
-from .caching_query import FromCache
+
# load Person objects. cache the result in the "default" cache region
print("loading people....")