diff options
Diffstat (limited to 'python/report_ops/custodians.py')
| -rw-r--r-- | python/report_ops/custodians.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/report_ops/custodians.py b/python/report_ops/custodians.py index 90e081d5..2f9bf6fd 100644 --- a/python/report_ops/custodians.py +++ b/python/report_ops/custodians.py @@ -184,7 +184,7 @@ def download_bny_reports(date, fund, em): p.write_bytes(attach.content) -def download_scotia_reports(date, fund): +def download_scotia_reports(date, fund, **kwargs): try: return download_scotia_report(date) except ( @@ -195,7 +195,7 @@ def download_scotia_reports(date, fund): raise ValueError(f"No Scotia report {fund}:{date}") -def download_gstx_reports(date, fund): +def download_gstx_reports(date, fund, **kwargs): sftp = Client.from_creds("gstx") pattern = r"(\d{4}-\d{2}-\d{2}T\d{2}_\d{2}_\d{2}\.\d{6})" for f in sftp.client.listdir(): |
