diff options
author | André Glüpker <git@wgmd.de> | 2021-07-29 10:48:55 +0200 |
---|---|---|
committer | André Glüpker <git@wgmd.de> | 2021-07-29 10:51:55 +0200 |
commit | b526cc68929250a7f71ff21ed8410ffd8db87a9d (patch) | |
tree | 54ff4b25b4eea9a142a46741eaf502116b030383 /wsgi.py | |
parent | af15eade0f59c17c4867baffe0e1dc05033b06c8 (diff) | |
download | rss-feeds-b526cc68929250a7f71ff21ed8410ffd8db87a9d.tar.gz rss-feeds-b526cc68929250a7f71ff21ed8410ffd8db87a9d.tar.bz2 rss-feeds-b526cc68929250a7f71ff21ed8410ffd8db87a9d.zip |
Format using black
Diffstat (limited to 'wsgi.py')
-rwxr-xr-x | wsgi.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,6 +1,7 @@ #!/usr/bin/env python3 import sys -sys.path.append('./') + +sys.path.append("./") from webapp import app as application |