From 6dbbe5e259c52d48bbee045d600c98644cbb14d2 Mon Sep 17 00:00:00 2001 From: Andrew Date: Mon, 14 Oct 2013 01:13:03 +0100 Subject: [PATCH] Remove half complete flask container. --- standings/flask.py | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 standings/flask.py diff --git a/standings/flask.py b/standings/flask.py deleted file mode 100644 index 1a9fd06..0000000 --- a/standings/flask.py +++ /dev/null @@ -1,13 +0,0 @@ -try: - from flask import Flask -except ImportError: - raise Exception('Flask is not available, please install if you wish to use Standings as a webapp') - -from .core import Standings - -app = Flask(__name__) -stdobj = Standings() - -@app.route('/') -def standings(): - return stdobj._get_html()