diff --git a/src/HowBadIsMyBatch.ipynb b/src/HowBadIsMyBatch.ipynb index ba9191ce7ca..22d5289ba4c 100644 --- a/src/HowBadIsMyBatch.ipynb +++ b/src/HowBadIsMyBatch.ipynb @@ -217,10 +217,9 @@ "\n", "def downloadVAERSFile(file, downloadDir):\n", " driver = getWebDriver(downloadDir, isHeadless = False)\n", - " absoluteFile = downloadDir + \"/\" + file\n", " downloadedFile = downloadFile(\n", " file = file,\n", - " absoluteFile = absoluteFile,\n", + " absoluteFile = downloadDir + \"/\" + file,\n", " driver = driver,\n", " maxTries = None)\n", " driver.quit()\n",