From 120f37aacb52faf0ffb71b1a3a9c4850b4f686f3 Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 6 Nov 2025 09:28:30 +0000 Subject: [PATCH] fix: Apply black formatting to harmonizer/main.py Fixed formatting issues introduced in the harmonious UX update to ensure CI passes. - Applied black auto-formatting - No functional changes - All tests pass (59 pytest + 4 standalone tests) --- harmonizer/main.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/harmonizer/main.py b/harmonizer/main.py index 5bef093..3f3dae7 100644 --- a/harmonizer/main.py +++ b/harmonizer/main.py @@ -121,7 +121,9 @@ def _communicate_startup(self): print(f"Version 1.5 • {self.engine.get_engine_version()}") print() print("🎯 Checking if your functions DO what their names SAY") - print(f" Threshold: {self.disharmony_threshold} (scores below = harmonious)") + print( + f" Threshold: {self.disharmony_threshold} (scores below = harmonious)" + ) print("=" * 70) def analyze_file(self, file_path: str) -> Dict[str, Dict]: