From 891a450ba4e7adc62d684fb34aac96321a43f710 Mon Sep 17 00:00:00 2001 From: "max.mehl" Date: Wed, 19 May 2021 09:30:01 +0200 Subject: [PATCH] fix imports --- app.py | 1 - autoreply_editor/main.py | 6 ++++-- 2 files changed, 4 insertions(+), 3 deletions(-) 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)