From fac554366186e8b02a168b84279f8acf6d4efcd7 Mon Sep 17 00:00:00 2001 From: Lasse Date: Fri, 23 Feb 2024 13:08:14 +0100 Subject: [PATCH] lint --- docs/tutorials/02_advanced.ipynb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/tutorials/02_advanced.ipynb b/docs/tutorials/02_advanced.ipynb index bb7adb3e..f9591f8f 100644 --- a/docs/tutorials/02_advanced.ipynb +++ b/docs/tutorials/02_advanced.ipynb @@ -297,10 +297,11 @@ "outputs": [], "source": [ "import polars as pl\n", + "\n", "# add a new column to df_synth_predictors to simulate a new predictor measured at the same time\n", "df_synth_predictors = df_synth_predictors.with_columns(\n", " new_predictor=pl.Series(np.random.rand(df_synth_predictors.shape[0]))\n", - ") " + ")" ] }, {