]> Untitled Git - axy/ft/python08.git/commitdiff
More newlines master
author= <=>
Wed, 1 Apr 2026 15:32:24 +0000 (17:32 +0200)
committer= <=>
Wed, 1 Apr 2026 15:32:24 +0000 (17:32 +0200)
ex01/loading.py
ex02/oracle.py

index d970a26670cdb61ab12ecfe220e3e25381657dfc..8da1ab5311046c971963d4e25544f4dc2765925b 100644 (file)
@@ -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}")
index b2e904c201d1d261438ebaf62a6e389b0a786bb5..c980cf7ad57671ee96ae1540d1302629006463bb 100644 (file)
@@ -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}")