Fix Python linting issues in Python scripts
[integration.git] / test / vcpe / preload.py
index 117b63e..62c036c 100755 (executable)
@@ -26,7 +26,7 @@ class Preload:
         with open(template_file) as json_input:
             json_data = json.load(json_input)
             stk = [json_data]
-            while len(stk) > 0:
+            while stk:
                 data = stk.pop()
                 for k, v in data.items():
                     if type(v) is dict: