aboutsummaryrefslogtreecommitdiffstats
path: root/python/report_ops/wires.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/report_ops/wires.py')
-rw-r--r--python/report_ops/wires.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/python/report_ops/wires.py b/python/report_ops/wires.py
index 13834410..b84331cd 100644
--- a/python/report_ops/wires.py
+++ b/python/report_ops/wires.py
@@ -97,13 +97,6 @@ class WireReport(Report, table_name="custodian_wires"):
conn.commit()
cls._insert_queue.clear()
- @classmethod
- def to_db(cls, date, fund):
- for line in cls.yield_rows(date, fund):
- trade = cls.from_report_line(line | {"fund": fund})
- trade.stage()
- cls.commit()
-
class BNYWireReport(WireReport, custodian="BNY", dtkey="%Y%m%d%H%M%S"):
@classmethod