fix: Correct nested try blocks and indentation in t_sunnyband.py

This commit is contained in:
Bobby (aider) 2025-02-08 20:54:51 -08:00
parent 4984d4944a
commit 819c91ff4a

View File

@ -66,7 +66,6 @@ def get_valid_tickers(min_price: float, max_price: float, min_volume: int, inter
ORDER BY ticker ASC
"""
try:
result = client.query(daily_query)
tickers = [row[0] for row in result.result_rows]