From ab1c001ddfd74fbd21aa1ee7c5523de363af0980 Mon Sep 17 00:00:00 2001 From: = <=> Date: Wed, 1 Apr 2026 17:32:24 +0200 Subject: [PATCH] More newlines --- ex01/loading.py | 6 +++--- ex02/oracle.py | 3 +++ 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/ex01/loading.py b/ex01/loading.py index d970a26..8da1ab5 100644 --- a/ex01/loading.py +++ b/ex01/loading.py @@ -55,7 +55,7 @@ def analyze_data() -> None: plt.legend() plt.grid(True) plt.savefig("matrix_analysis.png") - print() + print() print("Analysis complete!") print("Results saved to: matrix_analysis.png") @@ -64,9 +64,9 @@ def main() -> None: """Main function to run the loading program.""" try: print("LOADING STATUS: Loading programs...") - print() + print() if check_dependencies(): - print() + print() analyze_data() except Exception as e: print(f"An error occurred: {e}") diff --git a/ex02/oracle.py b/ex02/oracle.py index b2e904c..c980cf7 100644 --- a/ex02/oracle.py +++ b/ex02/oracle.py @@ -69,10 +69,13 @@ def display_config(config: dict[str, str | None]) -> None: def main() -> None: """Main function to run the oracle program.""" try: + print() print("ORACLE STATUS: Reading the Matrix...") config = load_config() display_config(config) + print() check_security() + print() print("The Oracle sees all configurations.") except Exception as e: print(f"An error occurred: {e}") -- 2.53.0