diff options
Diffstat (limited to 'python')
| -rw-r--r-- | python/collateral/__main__.py | 2 | ||||
| -rw-r--r-- | python/collateral/jpm.py | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/python/collateral/__main__.py b/python/collateral/__main__.py index 1c333a18..91c2d1dd 100644 --- a/python/collateral/__main__.py +++ b/python/collateral/__main__.py @@ -66,7 +66,7 @@ cp_dict = { }, "Selene": { "fcms": ("baml_fcm",), - "isda_cps": ("baml_isda", "gs", "ms"), + "isda_cps": ("baml_isda", "gs", "ms", "jpm"), }, } diff --git a/python/collateral/jpm.py b/python/collateral/jpm.py index 5c0584a4..22753570 100644 --- a/python/collateral/jpm.py +++ b/python/collateral/jpm.py @@ -10,14 +10,16 @@ logger = logging.getLogger(__name__) paths = { "Serenitas": ["NYops", "Margin Calls JPM"], "BowdSt": ["BowdoinOps", "Margin JPM"], + "Selene": ["SeleneOps", "Margin JPM"], } accounts = { "BowdSt": "909271", "Serenitas": "923550", + "Selene": "1001279", } -passwords = {"BowdSt": "tm64EO", "Serenitas": "JV3RJu"} +passwords = {"BowdSt": "tm64EO", "Serenitas": "JV3RJu", "Selene": "s3agvz"} def load_file(d, fund): |
