diff options
Diffstat (limited to 'python/markit/import_quotes.py')
| -rw-r--r-- | python/markit/import_quotes.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/markit/import_quotes.py b/python/markit/import_quotes.py index c441e092..f224df53 100644 --- a/python/markit/import_quotes.py +++ b/python/markit/import_quotes.py @@ -69,7 +69,7 @@ def get_markit_bbg_mapping(database, basketid_list, workdate): ## these bbg tickers can have different curves (ok) ## or same curves (not ok since date, curve_ticker needs to be unique) ## therefore we keep them in a set structure - markit_bbg_mapping[key].add((tuple(rec.cds_curve), (rec.company_id, rec.seniority))) + markit_bbg_mapping[key].add(tuple(rec.cds_curve)) database.commit() return (all_tickers, markit_bbg_mapping) |
