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