From 22fdf9ebbe052fe53c99acf0f4bc7055376fed35 Mon Sep 17 00:00:00 2001 From: frankknoll Date: Fri, 13 May 2022 19:46:09 +0200 Subject: [PATCH] refactoring --- src/HowBadIsMyBatch.ipynb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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",