aboutsummaryrefslogtreecommitdiffstats
path: root/python
diff options
context:
space:
mode:
Diffstat (limited to 'python')
-rw-r--r--python/report_ops/__main__.py1
-rw-r--r--python/report_ops/custodians.py2
2 files changed, 1 insertions, 2 deletions
diff --git a/python/report_ops/__main__.py b/python/report_ops/__main__.py
index 52deb55b..194dd536 100644
--- a/python/report_ops/__main__.py
+++ b/python/report_ops/__main__.py
@@ -18,7 +18,6 @@ from .cash import NTCashReport, UMBCashReport, BNYCashReport
from .admin import AccruedReport, AllReport
from .wires import BowdstWire, NTWire
from .custodians import upload_to_custodian
-from serenitas.utils.remote import Client
logger = logging.getLogger(__name__)
diff --git a/python/report_ops/custodians.py b/python/report_ops/custodians.py
index 8eae92ce..e225bb4d 100644
--- a/python/report_ops/custodians.py
+++ b/python/report_ops/custodians.py
@@ -19,7 +19,7 @@ def upload_to_custodian(account, trade_date, upload, em):
"SELECT * FROM bond_trades WHERE trade_date=%s AND account=%s",
(
trade_date,
- "BAC" if account == "UMB" else account,
+ account,
),
)
for row in c: