rename blueprint variables (blueprint_name -> bp) and view files (views.py -> routes.py)

This commit is contained in:
Patrick Jentsch
2021-09-13 11:45:43 +02:00
parent bc5c8ef074
commit 4950a407af
18 changed files with 85 additions and 85 deletions

View File

@@ -1,5 +1,5 @@
from flask import Blueprint
jobs = Blueprint('jobs', __name__)
from . import views
bp = Blueprint('jobs', __name__)
from . import routes