From 72293f7cbb44588f58c08914924555c663b7a2ba Mon Sep 17 00:00:00 2001 From: jerry Date: Thu, 18 Jun 2026 16:21:03 -0400 Subject: [PATCH] scheduled_close_time -> close_time Co-authored-by: Cursor --- .../forecast_bots/official_bots/no_research_one_shot_bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/forecasting_tools/forecast_bots/official_bots/no_research_one_shot_bot.py b/forecasting_tools/forecast_bots/official_bots/no_research_one_shot_bot.py index fc90c316..46e270f8 100644 --- a/forecasting_tools/forecast_bots/official_bots/no_research_one_shot_bot.py +++ b/forecasting_tools/forecast_bots/official_bots/no_research_one_shot_bot.py @@ -73,7 +73,7 @@ def _header(cls, question: MetaculusQuestion) -> str: f"**Question:** {question.question_text}\n\n" f"**Today's Date:** {today}\n\n" f"**Forecasting Window:** opens {question.open_time}, " - f"closes {question.scheduled_close_time}\n\n" + f"closes {question.close_time}\n\n" f"**Details:**\n{cls._question_details(question)}\n\n" )