From 0346d939ab4a93c49d6549c2fd4f18237930b4ac Mon Sep 17 00:00:00 2001 From: Benjamin Adovasio Date: Sun, 29 Mar 2026 20:33:45 -0400 Subject: [PATCH] Changed typehint for block 34 --- HW 5/Iris_knn_W2025_template.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/HW 5/Iris_knn_W2025_template.ipynb b/HW 5/Iris_knn_W2025_template.ipynb index 3423242..8f8ef94 100644 --- a/HW 5/Iris_knn_W2025_template.ipynb +++ b/HW 5/Iris_knn_W2025_template.ipynb @@ -2700,7 +2700,7 @@ }, { "cell_type": "code", - "execution_count": 35, + "execution_count": null, "metadata": { "id": "AsC4oa2qKPSG" }, @@ -2722,7 +2722,7 @@ "# final predictive model (k-nearest-neighbor), with tuned k + ALL data incorporated\n", "#\n", "\n", - "def predictiveModel( features: list[float] ) -> None:\n", + "def predictiveModel( features: list[float] ) -> str:\n", " ''' input: a list of four features\n", " [ sepallen, sepalwid, petallen, petalwid ]\n", " output: the predicted species of iris, from\n",