Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 92e45cd9fc | |||
| 15049f0af2 |
+6
-3
@@ -17,8 +17,11 @@ MODULES = [
|
|||||||
def print_versions():
|
def print_versions():
|
||||||
for module in MODULES:
|
for module in MODULES:
|
||||||
version = getattr(module, "__version__", "unknown")
|
version = getattr(module, "__version__", "unknown")
|
||||||
print(f"[MODULE] {module.__name__} v{version}")
|
print(f"# [MODULE] {module.__name__} v{version}")
|
||||||
|
|
||||||
def init():
|
def init():
|
||||||
print(f"Custom_Lib v{__version__}")
|
print("\n" + "#" * 60)
|
||||||
print_versions()
|
print(f"# Custom_Lib v{__version__}")
|
||||||
|
print("=" * 60)
|
||||||
|
print_versions()
|
||||||
|
print("#" * 60)
|
||||||
Reference in New Issue
Block a user