Merge pull request #178 from alphagov/import-fix

Fix missing import
This commit is contained in:
Rebecca Law
2016-02-17 10:20:58 +00:00

View File

@@ -1,4 +1,8 @@
from flask import render_template, current_app
from flask import (
render_template,
flash
)
from app.main import main
from app.main.dao import users_dao
from app.main.forms import ForgotPasswordForm