Do not use `len(SEQUENCE)` to determine if a sequence is empty 33/104233/1
authorBartek Grzybowski <b.grzybowski@partner.samsung.com>
Tue, 24 Mar 2020 09:53:33 +0000 (10:53 +0100)
committerBartek Grzybowski <b.grzybowski@partner.samsung.com>
Tue, 24 Mar 2020 09:53:33 +0000 (10:53 +0100)
Change-Id: Iad6832e7b9d468bc8ce73cb728bb983941f7a61c
Issue-ID: INT-1482
Signed-off-by: Bartek Grzybowski <b.grzybowski@partner.samsung.com>
tutorials/vFWDT/workflow/workflow.py
vnfs/VES5.0/evel/evel-test-collector/code/collector/collector.py
vnfs/VES5.0/evel/evel-test-collector/code/collector/test_control.py

index 6054569..8703be7 100755 (executable)
@@ -188,7 +188,7 @@ def _get_aai_rel_link_data(data, related_to, search_key=None, match_dict=None):
                         response.append(
                             {"link": link, "d_value": dval}
                         )
-    if len(response) == 0:
+    if response:
         response.append(
             {"link": None, "d_value": None}
         )
index 6fadd46..6565e43 100644 (file)
@@ -526,7 +526,7 @@ USAGE
             raise RuntimeError('Invalid Vendor Event Listener port ({0}) '
                                'specified'.format(vel_port))
 
-        if (len(vel_path) > 0 and vel_path[-1] != '/'):
+        if (vel_path and vel_path[-1] != '/'):
             logger.warning('Event Listener Path ({0}) should have terminating '
                            '"/"!  Adding one on to configured string.'.format(
                                                                      vel_path))
@@ -590,8 +590,7 @@ USAGE
                    format(vel_path,
                           api_version,
                           '/' + vel_topic_name
-                          if len(vel_topic_name) > 0
-                          else '')
+                          if vel_topic_name else '')
         throttle_url = '/{0}eventListener/v{1}/clientThrottlingState'.\
                        format(vel_path, api_version)
         batch_url = '/{0}eventListener/v{1}/eventBatch'.\
index 72f53fb..5d7394e 100644 (file)
@@ -43,9 +43,9 @@ def command_interval(interval):
 def command_throttle(domain, fields, pairs):
     "return a throttlingSpecification"
     throttle_spec = {'eventDomain' : domain}
-    if len(fields):
+    if fields:
         throttle_spec['suppressedFieldNames'] = fields
-    if len(pairs):
+    if pairs:
         throttle_spec['suppressedNvPairsList'] = pairs
     return {'command':
             {'commandType': 'throttlingSpecification',