From f6539d8acefd625dc93faf3aebc1b3d980424ccc Mon Sep 17 00:00:00 2001 From: Matheus Moreno Date: Mon, 15 Aug 2022 13:57:01 -0300 Subject: [PATCH] Execute automatic linting --- flytekit/extras/tasks/shell.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flytekit/extras/tasks/shell.py b/flytekit/extras/tasks/shell.py index df0f5d41111..be7cda0a17f 100644 --- a/flytekit/extras/tasks/shell.py +++ b/flytekit/extras/tasks/shell.py @@ -132,7 +132,7 @@ def __init__( script_file = os.path.abspath(script_file) if task_config is not None: - fully_qualified_class_name = task_config.__module__ + '.' + task_config.__class__.__name__ + fully_qualified_class_name = task_config.__module__ + "." + task_config.__class__.__name__ if not fully_qualified_class_name == "flytekitplugins.pod.task.Pod": raise ValueError("TaskConfig can either be empty - indicating simple container task or a PodConfig.")