From 2efdf5d5b4aaf8e10bd38eeab71372c856785bb8 Mon Sep 17 00:00:00 2001 From: sousaedu Date: Thu, 29 Jul 2021 17:40:16 +0200 Subject: [PATCH] Fix bug 1616 - fix import for IM Change-Id: Ie65ceb116eb7fbb5478e989ca100835334527427 Signed-off-by: sousaedu --- osm_nbi/descriptor_topics.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/osm_nbi/descriptor_topics.py b/osm_nbi/descriptor_topics.py index df218cc..1ee67fd 100644 --- a/osm_nbi/descriptor_topics.py +++ b/osm_nbi/descriptor_topics.py @@ -28,8 +28,7 @@ from re import fullmatch from osm_nbi.validation import ValidationError, pdu_new_schema, pdu_edit_schema, \ validate_input, vnfpkgop_new_schema from osm_nbi.base_topic import BaseTopic, EngineException, get_iterable -etsi_nfv_vnfd = importlib.import_module("osm_im.etsi-nfv-vnfd") -etsi_nfv_nsd = importlib.import_module("osm_im.etsi-nfv-nsd") +from osm_im import etsi_nfv_vnfd, etsi_nfv_nsd from osm_im.nst import nst as nst_im from pyangbind.lib.serialise import pybindJSONDecoder import pyangbind.lib.pybindJSON as pybindJSON -- 2.17.1