diff options
| -rw-r--r-- | python/collateral/__main__.py | 2 | ||||
| -rw-r--r-- | python/collateral/bnp.py | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/python/collateral/__main__.py b/python/collateral/__main__.py index c305420f..52aa2d5f 100644 --- a/python/collateral/__main__.py +++ b/python/collateral/__main__.py @@ -76,7 +76,7 @@ cp_dict = { }, "Selene": { "fcms": ("baml_fcm",), - "isda_cps": ("baml_isda", "gs", "ms", "jpm", "barclays"), + "isda_cps": ("baml_isda", "gs", "ms", "jpm", "barclays", "bnp"), }, } diff --git a/python/collateral/bnp.py b/python/collateral/bnp.py index 87b3be5c..fefa316e 100644 --- a/python/collateral/bnp.py +++ b/python/collateral/bnp.py @@ -5,6 +5,7 @@ from . import DAILY_DIR paths = { "Serenitas": ["NYops", "Margin Calls BNP"], "BowdSt": ["BowdoinOps", "Margin BNP"], + "Selene": ["SeleneOps", "Margin BNP"], } @@ -28,6 +29,7 @@ def load_file(d: datetime.date, report_type: str, fund: str): fund_mapping = { "Serenitas": "SERENITAS CREDIT GAMMA MASTER FUND, LP", "BowdSt": "BOSTON PATRIOT BOWDOIN ST LLC", + "Selene": "ISO SELENE INC.", } fname = ( f"{report_type} - BNP PARIBAS - {fund_mapping[fund]} " f"- COB {d:%Y%m%d}.XLS" |
