aboutsummaryrefslogtreecommitdiffstats
path: root/python/report_ops/__main__.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/report_ops/__main__.py')
-rw-r--r--python/report_ops/__main__.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/python/report_ops/__main__.py b/python/report_ops/__main__.py
index 4124ef08..ac8ad764 100644
--- a/python/report_ops/__main__.py
+++ b/python/report_ops/__main__.py
@@ -10,7 +10,8 @@ from serenitas.analytics.exceptions import MissingDataError
from .sma import SMA
from .cash import CashReport
from .admin import CitcoReport
-from .wires import WireReport
+
+# from .wires import WireReport
from .custodians import upload_to_custodian, get_custodian_download_fun
from .utils import notify_payment_settlements, notify_fx_hedge
from .misc import _fund_custodians
@@ -86,7 +87,8 @@ if args.cash_reports or args.wire_reports:
if args.cash_reports:
Report = CashReport
else:
- Report = WireReport
+ pass
+ # Report = WireReport
for fund, custodians in _fund_custodians.items():
for custodian in custodians:
get_custodian_download_fun(custodian)(args.date, fund, em=em)