mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-20 15:31:15 -05:00
flake8 - remove unused imports and ensure they're always at the top of the file
This commit is contained in:
@@ -1,15 +1,14 @@
|
||||
from flask import Blueprint, jsonify
|
||||
from flask import Blueprint, jsonify, current_app
|
||||
|
||||
from app.config import QueueNames
|
||||
from app.delivery import send_to_providers
|
||||
from app.models import EMAIL_TYPE
|
||||
from app.celery import provider_tasks
|
||||
from app.dao import notifications_dao
|
||||
from flask import current_app
|
||||
from app.errors import register_errors
|
||||
|
||||
delivery_blueprint = Blueprint('delivery', __name__)
|
||||
|
||||
from app.errors import register_errors
|
||||
|
||||
register_errors(delivery_blueprint)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user