Skip to content

Commit 5499379

Browse files
authored
Update reports.py
1 parent 1844c5a commit 5499379

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

brainimagelibrary/reports.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ def fetch_and_load_csv(url, file_path,overwrite=False):
101101
today = datetime.today().strftime("%Y%m%d")
102102
url = f"{base_url}/{today}.tsv"
103103
file_path = f"/tmp/{today}.tsv"
104-
df = fetch_and_load_csv(url, file_path)
104+
df = fetch_and_load_csv(url, file_path, overwrite)
105105
if df is None:
106106
print("Failed to fetch simple daily report. Creating local report...")
107107
df = __create_daily_report(overwrite)

0 commit comments

Comments
 (0)