From e62d56ff62f651354d730ea47a5973e6d9ab2513 Mon Sep 17 00:00:00 2001 From: Anirban Ray <39331844+yarnabrina@users.noreply.github.com> Date: Thu, 25 Jan 2024 23:36:39 +0530 Subject: [PATCH] fix wrong setting of dict key --- sktime/forecasting/compose/_fallback.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sktime/forecasting/compose/_fallback.py b/sktime/forecasting/compose/_fallback.py index 5e67aef81ee..a6e75b6ffd3 100644 --- a/sktime/forecasting/compose/_fallback.py +++ b/sktime/forecasting/compose/_fallback.py @@ -209,7 +209,7 @@ def _predict(self, fh, X=None): return self.current_forecaster_.predict(fh, X) except Exception as e: self.exceptions_raised_[self.first_nonfailing_forecaster_index_] = { - "failed_at_step": "fit", + "failed_at_step": "predict", "exception": e, "forecaster_name": self.current_name_, }