diff --git a/app.py b/app.py index c61b800..c7c3ad5 100644 --- a/app.py +++ b/app.py @@ -1,4 +1,3 @@ -import os import os.path as op from autoreply_editor import app diff --git a/autoreply_editor/main.py b/autoreply_editor/main.py index 60eda6a..14e0205 100644 --- a/autoreply_editor/main.py +++ b/autoreply_editor/main.py @@ -1,6 +1,8 @@ -from autoreply_editor import app -from flask import Flask, request, render_template, redirect +"""Provide basic settings and views""" + +from flask import request, render_template, redirect from flask_basicauth import BasicAuth +from autoreply_editor import app basic_auth = BasicAuth(app)