aboutsummaryrefslogtreecommitdiffstats
path: root/src/onaptests/steps/instantiate/service_macro.py
diff options
context:
space:
mode:
authorLukasz Rajewski <lukasz.rajewski@t-mobile.pl>2024-01-31 11:06:56 +0100
committerLukasz Rajewski <lukasz.rajewski@t-mobile.pl>2024-01-31 11:41:12 +0100
commit6a3e189d7fac6ec562f8785c71ed87663ef0c311 (patch)
treec18e2f00c9e0c13575f515b4662ef65d42457847 /src/onaptests/steps/instantiate/service_macro.py
parenta7edeebc90bdd335361a7b36f5f5d12a14375554 (diff)
Changes in the packages sort order
Issue-ID: TEST-402 Signed-off-by: Lukasz Rajewski <lukasz.rajewski@t-mobile.pl> Change-Id: I9f8ac40254e6a052c4b3ced5b05e21d7e84fa37f
Diffstat (limited to 'src/onaptests/steps/instantiate/service_macro.py')
-rw-r--r--src/onaptests/steps/instantiate/service_macro.py22
1 files changed, 8 insertions, 14 deletions
diff --git a/src/onaptests/steps/instantiate/service_macro.py b/src/onaptests/steps/instantiate/service_macro.py
index a513d1e..37c5318 100644
--- a/src/onaptests/steps/instantiate/service_macro.py
+++ b/src/onaptests/steps/instantiate/service_macro.py
@@ -2,7 +2,6 @@
import time
from typing import List
from uuid import uuid4
-from yaml import load, SafeLoader
from onapsdk.aai.business.owning_entity import OwningEntity
from onapsdk.aai.cloud_infrastructure.cloud_region import CloudRegion
@@ -10,23 +9,18 @@ from onapsdk.aai.cloud_infrastructure.tenant import Tenant
from onapsdk.configuration import settings
from onapsdk.exceptions import ResourceNotFound
from onapsdk.sdc.service import Service
-from onapsdk.so.instantiation import (
- InstantiationParameter,
- ServiceInstantiation,
- VfmoduleParameters,
- VnfParameters,
- SoService
-)
-from onaptests.steps.cloud.customer_service_subscription_create import (
- CustomerServiceSubscriptionCreateStep
-)
+from onapsdk.so.instantiation import (InstantiationParameter,
+ ServiceInstantiation, SoService,
+ VfmoduleParameters, VnfParameters)
+from yaml import SafeLoader, load
import onaptests.utils.exceptions as onap_test_exceptions
from onaptests.steps.base import YamlTemplateBaseStep
-from onaptests.steps.onboard.service import YamlTemplateServiceOnboardStep
-from onaptests.steps.cloud.connect_service_subscription_to_cloud_region import (
+from onaptests.steps.cloud.connect_service_subscription_to_cloud_region import \
ConnectServiceSubToCloudRegionStep
-)
+from onaptests.steps.cloud.customer_service_subscription_create import \
+ CustomerServiceSubscriptionCreateStep
+from onaptests.steps.onboard.service import YamlTemplateServiceOnboardStep
class YamlTemplateServiceMacroInstantiateStep(YamlTemplateBaseStep):