From 1545757a5aa70a8895e8f7c859f06ffd44c15c18 Mon Sep 17 00:00:00 2001 From: spolisar <22416070+spolisar@users.noreply.github.com> Date: Thu, 12 Feb 2026 13:14:25 -0500 Subject: [PATCH] docs: fix sktime blog post for ci --- docs/blog/posts/timecopilot-sktime-integration.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/blog/posts/timecopilot-sktime-integration.md b/docs/blog/posts/timecopilot-sktime-integration.md index 61cadd1..bed6f31 100644 --- a/docs/blog/posts/timecopilot-sktime-integration.md +++ b/docs/blog/posts/timecopilot-sktime-integration.md @@ -37,7 +37,9 @@ All models use the familiar scikit-learn `fit`/`predict` interface: ```python from sktime.forecasting.trend import TrendForecaster +from sktime.datasets import load_airline +y = load_airline() forecaster = TrendForecaster() forecaster.fit(y) y_pred = forecaster.predict(fh=[1, 2, 3])