Răsfoiți Sursa

Add type hints to performance.py for improved code clarity and type safety

Carles Sentis 1 săptămână în urmă
părinte
comite
d5a7da7248
2 a modificat fișierele cu 2 adăugiri și 1 ștergeri
  1. 1 0
      src/commands/info/performance.py
  2. 1 1
      trading_bot.py

+ 1 - 0
src/commands/info/performance.py

@@ -1,5 +1,6 @@
 import logging
 from datetime import datetime
+from typing import Dict, Any
 from telegram import Update
 from telegram.ext import ContextTypes
 from .base import InfoCommandsBase

+ 1 - 1
trading_bot.py

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