diff --git a/week1/community-contributions/D2-property-rental-assistant/day2.ipynb b/week1/community-contributions/D2-property-rental-assistant/day2.ipynb index 5f57780..4c8dc5e 100644 --- a/week1/community-contributions/D2-property-rental-assistant/day2.ipynb +++ b/week1/community-contributions/D2-property-rental-assistant/day2.ipynb @@ -39,7 +39,7 @@ "}\n", "\n", "class Website:\n", - " def __init__(self, url): # ✅ Corrected init\n", + " def __init__(self, url):\n", " self.url = url\n", " try:\n", " response = requests.get(url, headers=headers, timeout=10)\n", @@ -163,7 +163,7 @@ "metadata": {}, "outputs": [], "source": [ - "if __name__ == \"__main__\": # Fixed: Changed **name** to __name__\n", + "if __name__ == \"__main__\": \n", " print(\"Starting AI Property Rental Assistant...\")\n", " print(\"=\" * 50)\n", " \n",