aboutsummaryrefslogtreecommitdiffstats
path: root/python/position_file_bowdst.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/position_file_bowdst.py')
-rw-r--r--python/position_file_bowdst.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/python/position_file_bowdst.py b/python/position_file_bowdst.py
index 6b34b8b4..00b30e5c 100644
--- a/python/position_file_bowdst.py
+++ b/python/position_file_bowdst.py
@@ -2,20 +2,20 @@ from report_ops.sma import build_position_file
import argparse
from serenitas.utils.remote import Client
from serenitas.utils.exchange import ExchangeMessage, FileAttachment
-from report_ops.misc import _recipients, _cc_recipients
+from report_ops.misc import _monthend_nav_recipients, _cc_recipients
import datetime
from serenitas.analytics.dates import prev_business_day
asset_splits = {
- "OTC": [
+ "OTC": (
"future",
"tranche",
"ir_swaption",
"cdx_swaption",
"irs",
"cdx",
- ],
- "BOND": ["bond"],
+ ),
+ "BOND": ("bond",),
}
@@ -40,7 +40,7 @@ def main(cob, fund, upload):
em.send_email(
subject=f"Position_files for Bowdoin Street as of {cob}",
body=f"Please see monthend positions for Bowdoin Street as of {cob}. They have been uploaded to the SFTP as well.",
- to_recipients=_recipients[fund],
+ to_recipients=_monthend_nav_recipients[fund],
cc_recipients=_cc_recipients[fund],
reply_to=_cc_recipients[fund],
attach=attachments,