From ec52069696b11971b723164474f2eb7f7c68c92f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=96m=C3=BCr=20=C3=96zkir?= Date: Tue, 28 Jul 2020 22:22:58 +0200 Subject: [PATCH] minor code style --- src/covid-19/Covid19.jl | 1 + 1 file changed, 1 insertion(+) diff --git a/src/covid-19/Covid19.jl b/src/covid-19/Covid19.jl index 16109350..d17873a0 100644 --- a/src/covid-19/Covid19.jl +++ b/src/covid-19/Covid19.jl @@ -12,6 +12,7 @@ const CSV_BOROUGHS = "src/covid-19/boroughs.csv" function fetchcurrent() response = HTTP.get(URL) html = parsehtml(String(response)) + infected = parseinfected(html.root) deaths = parsedeaths(html.root) hospitalizations = parsehospitalizations(html.root)