diff --git a/app.py b/app.py index b137eee..61fb35c 100644 --- a/app.py +++ b/app.py @@ -42,3 +42,5 @@ class ItemResource: api = falcon.API() api.add_route('/item', ItemResource()) + +# vim: set sw=4 ts=4 expandtab: diff --git a/config.py b/config.py index 19a043e..adbc0fe 100644 --- a/config.py +++ b/config.py @@ -3,3 +3,5 @@ import os # Check if Solr connection information was provided in the environment SOLR_SERVER = os.environ.get('SOLR_SERVER', 'http://localhost:8080/solr') SOLR_CORE = os.environ.get('SOLR_CORE', 'statistics') + +# vim: set sw=4 ts=4 expandtab: