fix imports

This commit is contained in:
2021-05-19 09:30:01 +02:00
parent 934c4877b2
commit 891a450ba4
2 changed files with 4 additions and 3 deletions

1
app.py
View File

@@ -1,4 +1,3 @@
import os
import os.path as op
from autoreply_editor import app

View File

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