diff options
Diffstat (limited to 'python/report_ops/custodians.py')
| -rw-r--r-- | python/report_ops/custodians.py | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/python/report_ops/custodians.py b/python/report_ops/custodians.py index 8f952d57..2c383706 100644 --- a/python/report_ops/custodians.py +++ b/python/report_ops/custodians.py @@ -93,9 +93,5 @@ class BNY: p = DAILY_DIR / str(date) / "Reports" / fname if not p.parent.exists(): p.parent.mkdir(parents=True, exist_ok=True) - if not p.exists() or ( - fname.startswith("BowdstWires") and bowdst_wire_recent - ): - if fname.startswith("BowdstWires"): - bowdst_wire_recent = False + if not p.exists(): p.write_bytes(attach.content) |
