Skip to content
Snippets Groups Projects
Commit 5e2b8583 authored by Erik Reid's avatar Erik Reid
Browse files

fix missing imports

parent 7c9137dd
No related branches found
No related tags found
No related merge requests found
from flask import Blueprint, current_app, jsonify from flask import Blueprint, current_app, jsonify
from inventory_provider.tasks import worker from inventory_provider.tasks import worker
from inventory_provider.tasks import common as worker_common
from inventory_provider.routes import common from inventory_provider.routes import common
routes = Blueprint("inventory-data-job-routes", __name__) routes = Blueprint("inventory-data-job-routes", __name__)
......
...@@ -2,12 +2,13 @@ import collections ...@@ -2,12 +2,13 @@ import collections
import json import json
import re import re
from flask import Blueprint, Response, jsonify from flask import Blueprint, Response, jsonify, current_app
from lxml import etree from lxml import etree
from inventory_provider import juniper from inventory_provider import juniper
from inventory_provider.routes import common from inventory_provider.routes import common
from inventory_provider.tasks import worker from inventory_provider.tasks import worker
from inventory_provider.tasks import common as worker_common
routes = Blueprint("inventory-data-testing-support-routes", __name__) routes = Blueprint("inventory-data-testing-support-routes", __name__)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment