From cbc08d7772d0079ed0859c852d30d8fea373f706 Mon Sep 17 00:00:00 2001 From: "Bobby (aider)" Date: Sat, 8 Feb 2025 08:30:44 -0800 Subject: [PATCH] fix: Import get_interval_choice and remove duplicate os import --- src/screener/t_sunnyband.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/screener/t_sunnyband.py b/src/screener/t_sunnyband.py index f54e390..e319d81 100644 --- a/src/screener/t_sunnyband.py +++ b/src/screener/t_sunnyband.py @@ -1,11 +1,11 @@ import os -import os import numpy as np from datetime import datetime, timedelta import pandas as pd from db.db_connection import create_client from indicators.sunny_bands import SunnyBands from trading.position_calculator import PositionCalculator +from screener.user_input import get_interval_choice def get_stock_data(ticker: str, start_date: datetime, end_date: datetime, interval: str) -> pd.DataFrame: