aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--python/trade_dataclasses.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/python/trade_dataclasses.py b/python/trade_dataclasses.py
index 8427f7e5..5ad8a325 100644
--- a/python/trade_dataclasses.py
+++ b/python/trade_dataclasses.py
@@ -592,7 +592,9 @@ class CDSDeal(
+ "_"
+ obj["SecurityDescription"].split()[4].removesuffix("Y")
)
- obj["ClearingAgent"] = "" # We need to query DB via accounts table here
+ obj[
+ "ClearingAgent"
+ ] = "BOA_FC" # We need to query DB via accounts table here
return obj
@classmethod