aboutsummaryrefslogtreecommitdiffstats
path: root/python
diff options
context:
space:
mode:
Diffstat (limited to 'python')
-rw-r--r--python/report_ops/wires.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/python/report_ops/wires.py b/python/report_ops/wires.py
index 78097026..c3eb1cf7 100644
--- a/python/report_ops/wires.py
+++ b/python/report_ops/wires.py
@@ -51,16 +51,6 @@ class Wire(Deal, table_name="custodian_wires", deal_type="custodian_wires"):
raise ValueError(f"No reports for {cls.fund} on {date}")
return p
- @classmethod
- def dtkey_fun(cls):
- def dtkey_fun(f):
- return datetime.datetime.strptime(
- f.name.removesuffix(".csv").removesuffix(".xlsx").rsplit("_")[-1],
- cls.dtkey,
- )
-
- return dtkey_fun
-
class BowdstWire(Wire, BNY, fund="BOWDST", dtkey="%Y%m%d%H%M%S"):
@classmethod