diff options
Diffstat (limited to 'python/load_bbh_reports.py')
| -rw-r--r-- | python/load_bbh_reports.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/python/load_bbh_reports.py b/python/load_bbh_reports.py index dc2b8854..586ac657 100644 --- a/python/load_bbh_reports.py +++ b/python/load_bbh_reports.py @@ -70,10 +70,8 @@ def val_report(f): def load_reports(date): path = DAILY_DIR / str(date) / "Reports" - filename = f"BBH_PNL.{date:%Y%m%d}.csv" - pnl_report(path / filename) - filename = f"BBH_VAL.{date:%Y%m%d}.csv" - val_report(path / filename) + pnl_report(path / f"BBH_PNL.{date:%Y%m%d}.csv") + val_report(path / f"BBH_VAL.{date:%Y%m%d}.csv") def download_val_report(date): |
