From 07278c6c427e8cfaf9bf421866cb1c89c835567f Mon Sep 17 00:00:00 2001 From: MuslemRahimi Date: Sat, 22 Feb 2025 09:31:39 +0100 Subject: [PATCH] bugfixing --- app/cron_dashboard.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/cron_dashboard.py b/app/cron_dashboard.py index 20d9274..cff38ff 100644 --- a/app/cron_dashboard.py +++ b/app/cron_dashboard.py @@ -328,7 +328,7 @@ async def get_analyst_report(): # If the latest report and symbol are found, add additional data from the summary file if latest_symbol and latest_data: - summary_path = Path(f"json/analyst/summary/{latest_symbol}.json") + summary_path = Path(f"json/analyst/summary/all_analyst/{latest_symbol}.json") if summary_path.is_file(): # Ensure the summary file exists async with aiofiles.open(summary_path, mode='r') as file: summary_data = ujson.loads(await file.read())