From 84801a4ab518f3c7a19c6e14693c540953244d93 Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Sun, 23 Sep 2018 11:33:26 +0300 Subject: [PATCH] Add vim modeline to all Python files Uses four spaces for tab and shift widths, and turns on expansion of tabs to spaces. --- app.py | 2 ++ config.py | 2 ++ 2 files changed, 4 insertions(+) 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: