diff --git a/inventory_provider/routes/jobs.py b/inventory_provider/routes/jobs.py index 4674a99e4145961c79d253010c8ca401f0ad9eba..2014b398a2592e2c626af9e98a39a026308d7510 100644 --- a/inventory_provider/routes/jobs.py +++ b/inventory_provider/routes/jobs.py @@ -1,6 +1,5 @@ from flask import Blueprint, current_app, jsonify from inventory_provider.tasks import worker -from inventory_provider.tasks import common as worker_common from inventory_provider.routes import common routes = Blueprint("inventory-data-job-routes", __name__) diff --git a/inventory_provider/routes/testing.py b/inventory_provider/routes/testing.py index 49b3ccb9e7b186513e9ba8505b6a4943e3251841..1d39603e64975a314731c60e2eaa416df89e989c 100644 --- a/inventory_provider/routes/testing.py +++ b/inventory_provider/routes/testing.py @@ -2,12 +2,13 @@ import collections import json import re -from flask import Blueprint, Response, jsonify +from flask import Blueprint, Response, jsonify, current_app from lxml import etree from inventory_provider import juniper from inventory_provider.routes import common from inventory_provider.tasks import worker +from inventory_provider.tasks import common as worker_common routes = Blueprint("inventory-data-testing-support-routes", __name__)