Unify import style

This commit is contained in:
Thastertyn 2024-03-08 14:05:00 +01:00
parent e069dedcda
commit a7a1ea72f1
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
from .. import bp_errors
from app.api import bp_errors
@bp_errors.app_errorhandler(400)
def bad_request(e):

View File

@ -1,6 +1,6 @@
from flask import jsonify, abort
from .. import bp
from app.api import bp
@bp.route('/')
def hello():