Change import logic.

This commit is contained in:
Patrick Jentsch
2019-11-12 13:36:22 +01:00
parent 2bebd0256c
commit 0d441a9364
11 changed files with 12 additions and 26 deletions

View File

@ -1,10 +1,9 @@
from flask import Blueprint
main = Blueprint('main', __name__)
from . import errors, views
from ..models import Permission
from app.models import Permission
@main.app_context_processor