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()