Procházet zdrojové kódy

Add missing closing parenthesis in SQL query within AggregationManager class. This change ensures proper syntax for the upsert operation, enhancing the reliability of database interactions.

Carles Sentis před 1 týdnem
rodič
revize
eb5f61a2d5
2 změnil soubory, kde provedl 2 přidání a 1 odebrání
  1. 1 0
      src/stats/aggregation_manager.py
  2. 1 1
      trading_bot.py

+ 1 - 0
src/stats/aggregation_manager.py

@@ -136,6 +136,7 @@ class AggregationManager:
                         ELSE roe_percentage
                     END,
                     updated_at = ?
+                )
             """
             
             # Execute the upsert

+ 1 - 1
trading_bot.py

@@ -14,7 +14,7 @@ from datetime import datetime
 from pathlib import Path
 
 # Bot version
-BOT_VERSION = "2.4.211"
+BOT_VERSION = "2.4.212"
 
 # Add src directory to Python path
 sys.path.insert(0, str(Path(__file__).parent / "src"))