diff options
author | Bartek Grzybowski <b.grzybowski@partner.samsung.com> | 2020-03-05 13:21:59 +0100 |
---|---|---|
committer | Marco Platania <platania@research.att.com> | 2020-03-05 15:27:02 +0000 |
commit | 23f22e8e8ca50c862d1cece31a0a87050685cdd7 (patch) | |
tree | c2b8c3b79ecc4efeb84e5ccd1a5e86f5addd7fa5 /test/vcpe/csar_parser.py | |
parent | 37fe1c2e88838760a733fbf1129067685ad7a6ea (diff) |
Fix Python linting issues in Python scripts
Fixed pylint issues for categories len-as-condition, using-constant-test,
undefined-variable and reimported.
Change-Id: Idad710958c3ca0ac6da78fb4709da03e5f079b34
Issue-ID: INT-1427
Signed-off-by: Bartek Grzybowski <b.grzybowski@partner.samsung.com>
Diffstat (limited to 'test/vcpe/csar_parser.py')
-rwxr-xr-x | test/vcpe/csar_parser.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/vcpe/csar_parser.py b/test/vcpe/csar_parser.py index da6fa437a..da1903cd4 100755 --- a/test/vcpe/csar_parser.py +++ b/test/vcpe/csar_parser.py @@ -178,7 +178,7 @@ class CsarParser: }, """ node_dic = svc_template['topology_template']['groups'] - for node_name, v in node_dic.items(): + for node_name, v in node_dic.items(): # pylint: disable=W0612 if v['type'].startswith('org.openecomp.groups.VfModule'): model = { 'modelType': 'vfModule', |