diff options
Diffstat (limited to 'python/trade_dataclasses.py')
| -rw-r--r-- | python/trade_dataclasses.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/trade_dataclasses.py b/python/trade_dataclasses.py index 734b4060..876005bc 100644 --- a/python/trade_dataclasses.py +++ b/python/trade_dataclasses.py @@ -501,7 +501,7 @@ class CDSDeal( @classmethod def from_bbg_line(cls, line: dict): - if "SEQ#" in line and line["Brkr"] != "BSEF": + if "Seq#" in line and line["Brkr"] != "BSEF": raise ValueError("Ignoring file, we have an allocation file") if line["Coupon"] == "": with cls._conn.cursor() as c: |
