diff options
Diffstat (limited to 'python')
| -rw-r--r-- | python/book_bbg.py | 1 | ||||
| -rw-r--r-- | python/trade_dataclasses.py | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/python/book_bbg.py b/python/book_bbg.py index 5f4c303c..54212412 100644 --- a/python/book_bbg.py +++ b/python/book_bbg.py @@ -24,7 +24,6 @@ def get_bbg_id(name): if __name__ == "__main__": import time - booker = {"BOND": bond_booking_process, "CDX": cdx_booking_process} sftp = SftpClient.from_creds("bbg") while True: for f in sftp.client.listdir_iter("/"): diff --git a/python/trade_dataclasses.py b/python/trade_dataclasses.py index 353d2e53..e56ce4ce 100644 --- a/python/trade_dataclasses.py +++ b/python/trade_dataclasses.py @@ -210,7 +210,7 @@ class BbgDeal: ) elif cls.__name__ == "CDSDeal": cls._bbg_sql_insert = ( - f"INSERT INTO cds_tickets VALUES({','.join(['%s'] * 20)})" + f"INSERT INTO cds_tickets VALUES({','.join(['%s'] * 22)})" ) @classmethod |
