From 4d88fef98f08c31255c6b37a1a36beb65166207a Mon Sep 17 00:00:00 2001 From: Alexis Lahouze Date: Fri, 27 Nov 2015 12:25:37 +0100 Subject: [PATCH] Cleanup imports. --- accountant/__init__.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/accountant/__init__.py b/accountant/__init__.py index 655b659..ad9c223 100644 --- a/accountant/__init__.py +++ b/accountant/__init__.py @@ -14,13 +14,10 @@ You should have received a copy of the GNU Affero General Public License along with Accountant. If not, see . """ -from contextlib import contextmanager - from flask import Flask, redirect, url_for from flask.ext.sqlalchemy import SQLAlchemy from flask.ext.bower import Bower -from flask.ext.assets import Environment, Bundle - +from flask.ext.assets import Environment # The app app = Flask(__name__, static_folder=None)