summaryrefslogtreecommitdiffstats
path: root/catalog-be/src/main/resources/scripts/import/tosca/importGroupTypes.py
diff options
context:
space:
mode:
authork.kedron <k.kedron@partner.samsung.com>2020-02-28 14:26:07 +0100
committerOfir Sonsino <ofir.sonsino@intl.att.com>2020-03-23 09:48:56 +0000
commit5944b441468500fffa7111b5dea9181461ae1303 (patch)
tree9b358b2d25a309c1d6dfd86227ec75b52b2ccefa /catalog-be/src/main/resources/scripts/import/tosca/importGroupTypes.py
parentec7da6aea30a1b73d1e0f5f75d2b6119ed8fa251 (diff)
Refactoring the sdc-BE-init python scripts
Adjust to the correct python syntax. Remove not used imports. Also fixed:  - the indents  - checking that all normative imported correctly logic Issue-ID: SDC-2784 Signed-off-by: Krystian Kedron <k.kedron@partner.samsung.com> Change-Id: If7edc867f3cb591be157073fbc12b9842b200023
Diffstat (limited to 'catalog-be/src/main/resources/scripts/import/tosca/importGroupTypes.py')
-rw-r--r--catalog-be/src/main/resources/scripts/import/tosca/importGroupTypes.py7
1 files changed, 2 insertions, 5 deletions
diff --git a/catalog-be/src/main/resources/scripts/import/tosca/importGroupTypes.py b/catalog-be/src/main/resources/scripts/import/tosca/importGroupTypes.py
index 0a94bbef95..7db60331aa 100644
--- a/catalog-be/src/main/resources/scripts/import/tosca/importGroupTypes.py
+++ b/catalog-be/src/main/resources/scripts/import/tosca/importGroupTypes.py
@@ -1,6 +1,3 @@
-import getopt
-import sys
-
from importCommon import *
from importNormativeElements import createNormativeElement
@@ -18,8 +15,8 @@ from importNormativeElements import createNormativeElement
#####################################################################################################################################################################################
def usage():
- print sys.argv[
- 0], '[optional -s <scheme> | --scheme=<scheme>, default http ] [-i <be host> | --ip=<be host>] [-p <be port> | --port=<be port> ] [-u <user userId> | --user=<user userId> ]'
+ print sys.argv[0], \
+ '[optional -s <scheme> | --scheme=<scheme>, default http ] [-i <be host> | --ip=<be host>] [-p <be port> | --port=<be port> ] [-u <user userId> | --user=<user userId> ]'
def importGroupTypes(scheme, be_host, be_port, admin_user, exit_on_success, file_dir):