From d33bc8ab0247196fae0732868637abc2e5d0f02f Mon Sep 17 00:00:00 2001 From: Thomas E Lackey Date: Fri, 27 Oct 2023 13:54:28 -0500 Subject: [PATCH] flake8 --- app/deploy/deployment_create.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/deploy/deployment_create.py b/app/deploy/deployment_create.py index b32d95f4..a7cbe57e 100644 --- a/app/deploy/deployment_create.py +++ b/app/deploy/deployment_create.py @@ -121,7 +121,7 @@ def call_stack_deploy_init(deploy_command_context): # Link with the python file in the stack # Call a function in it # If no function found, return None - python_file_paths = _commands_plugin_paths(deploy_command_context) + python_file_paths = _commands_plugin_paths(deploy_command_context) ret = None init_done = False @@ -135,7 +135,7 @@ def call_stack_deploy_init(deploy_command_context): ret = imported_stack.init(deploy_command_context) init_done = True else: - #TODO: remove this restriction + # TODO: remove this restriction print(f"Skipping init() from plugin {python_file_path}. Only one init() is allowed.") return ret