autopep8 fix for flake8
[bottlenecks.git] / utils / infra_setup / heat / template.py
index f05831d..f71e916 100755 (executable)
@@ -15,6 +15,7 @@ import shutil
 import common
 import consts.parameters as parameters
 
+
 class TreeNode:
 
     def __init__(self):
@@ -80,6 +81,7 @@ class TreeNode:
 
 template_name = parameters.TEST_TEMPLATE_NAME
 
+
 def generates_templates(base_heat_template, deployment_configuration):
     # parameters loaded from file
     template_dir = common.get_template_dir()
@@ -148,7 +150,8 @@ def get_all_heat_templates(template_dir, template_extension):
     template_files = list()
     for dirname, dirnames, filenames in os.walk(template_dir):
         for filename in filenames:
-            if template_extension in filename and filename.endswith(template_extension) and template_name in filename:
+            if template_extension in filename and filename.endswith(
+                    template_extension) and template_name in filename:
                 template_files.append(filename)
     template_files.sort()
     return template_files