From ed743e9b569ca5aae43f0bac332c38a37d1f7afa Mon Sep 17 00:00:00 2001 From: tsugumi-sys Date: Sun, 7 Jul 2024 12:36:24 +0900 Subject: [PATCH] cli: refactoring pipeline starting message --- stocklake/core/stdout.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stocklake/core/stdout.py b/stocklake/core/stdout.py index 2ef4155..954c368 100644 --- a/stocklake/core/stdout.py +++ b/stocklake/core/stdout.py @@ -12,7 +12,7 @@ def step_start(self, step_name: str): print( "{}{}{}{}".format( "=" * 30, - f"{step_name} started", + f"{step_name}", "=" * 30, self.msg_colors.get("DEFAULT"), )