Skip to content

Commit 6e98adf

Browse files
committed
Disabled low memory csv import for google data retrieval
1 parent c1f22bb commit 6e98adf

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

covid19_inference/data_retrieval/_Google.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def __init__(self, auto_download=False):
5555
"""
5656
Kwargs for pandas read csv
5757
"""
58-
kwargs = {"low_memory": False} # Surpress warning
58+
# kwargs = {"low_memory": False} # Surpress warning
5959

6060
"""
6161
If the local file is older than the update_interval it gets updated once the
@@ -70,7 +70,6 @@ def __init__(self, auto_download=False):
7070
url_csv,
7171
[_data_dir_fallback + "/" + name + "_fallback.csv.gz"],
7272
update_interval,
73-
**kwargs,
7473
)
7574

7675
if auto_download:

0 commit comments

Comments
 (0)