diff --git a/nbs/api/04_project_grading.ipynb b/nbs/api/04_project_grading.ipynb index 0749371..107739a 100644 --- a/nbs/api/04_project_grading.ipynb +++ b/nbs/api/04_project_grading.ipynb @@ -106,7 +106,7 @@ " score = 0\n", " for line in body.split(\"\\n\"):\n", " if \"Score =\" in line and \"[comment]\" not in line:\n", - " score = literal_eval(line.split(\"=\")[1])\n", + " score = literal_eval(line.split(\"= \")[1])\n", " return score\n", " raise ValueError(f\"Score Parse Error. please check the score format on github. \\n\"\n", " f\"Issue URL: {issue.url}\")\n",