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 db4bbb29..4fe952ef 100644 --- a/python/trade_dataclasses.py +++ b/python/trade_dataclasses.py @@ -416,7 +416,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: |
