From 15049f0af2cab7dd658c4ebb6dada86f811bafad Mon Sep 17 00:00:00 2001 From: KYUNGMO TAK Date: Thu, 7 May 2026 17:10:03 +0900 Subject: [PATCH] Modified print style --- Custom_Lib.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/Custom_Lib.py b/Custom_Lib.py index d238da0..6e95866 100644 --- a/Custom_Lib.py +++ b/Custom_Lib.py @@ -17,8 +17,11 @@ MODULES = [ def print_versions(): for module in MODULES: version = getattr(module, "__version__", "unknown") - print(f"[MODULE] {module.__name__} v{version}") + print(f"# [MODULE] {module.__name__} v{version}") def init(): - print(f"Custom_Lib v{__version__}") - print_versions() \ No newline at end of file + print("\n" + "#" * 60) + print(f"# Custom_Lib v{__version__}") + print("=" * 60) + print_versions() + print("#" * 60) \ No newline at end of file -- 2.52.0