From aecf2cf33726344c5c6859bc13ea5c5ea04de5f6 Mon Sep 17 00:00:00 2001 From: Edward Donner Date: Thu, 17 Oct 2024 12:55:12 -0400 Subject: [PATCH] Fixed the class definition - thank you Lucky P for pointing this out! --- week1/day5.ipynb | 1 + 1 file changed, 1 insertion(+) diff --git a/week1/day5.ipynb b/week1/day5.ipynb index 0e6a1d1..e676dad 100644 --- a/week1/day5.ipynb +++ b/week1/day5.ipynb @@ -64,6 +64,7 @@ " title: str\n", " body: str\n", " links: List[str]\n", + " text: str\n", "\n", " def __init__(self, url):\n", " self.url = url\n",