diff options
| -rw-r--r-- | python/report_ops/custodians.py | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/python/report_ops/custodians.py b/python/report_ops/custodians.py index c1eb39c8..2409dbfe 100644 --- a/python/report_ops/custodians.py +++ b/python/report_ops/custodians.py @@ -185,13 +185,7 @@ def download_bny_reports(date, fund, em): def download_scotia_reports(date, fund, **kwargs): - try: - return download_scotia_report(date) - except ( - ElementNotInteractableException, - TimeoutException, - ) as e: - raise ValueError(f"No Scotia report {fund}:{date}") + download_scotia_report(date) def download_gstx_reports(date, fund, **kwargs): |
