aboutsummaryrefslogtreecommitdiffstats
path: root/python
diff options
context:
space:
mode:
Diffstat (limited to 'python')
-rw-r--r--python/collateral/citi.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/collateral/citi.py b/python/collateral/citi.py
index 25fc1b23..f2015de2 100644
--- a/python/collateral/citi.py
+++ b/python/collateral/citi.py
@@ -12,7 +12,7 @@ def load_file(d):
)
except StopIteration:
raise FileNotFoundError(f"CITI file not found for date {d}")
- return pd.read_excel(fname, skiprows=6, skipfooter=2)
+ return pd.read_excel(fname, skiprows=6, skipfooter=2, engine="xlrd")
def download_files(em, count=20, **kwargs):