Modified print style
This commit is contained in:
+6
-3
@@ -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()
|
||||
print("\n" + "#" * 60)
|
||||
print(f"# Custom_Lib v{__version__}")
|
||||
print("=" * 60)
|
||||
print_versions()
|
||||
print("#" * 60)
|
||||
Reference in New Issue
Block a user