aboutsummaryrefslogtreecommitdiffstats
path: root/python/recon_bowdst.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/recon_bowdst.py')
-rw-r--r--python/recon_bowdst.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/recon_bowdst.py b/python/recon_bowdst.py
index ff754d47..d5d95266 100644
--- a/python/recon_bowdst.py
+++ b/python/recon_bowdst.py
@@ -199,7 +199,7 @@ def recon(hierarchy_file, date):
attachments = []
for kind, name in zip(kinds, names):
buf = StringIO()
- difference(kind.round(decimals=2)).to_csv(buf)
+ difference(kind.round(decimals=2).fillna(0)).to_csv(buf)
attachments.append(
FileAttachment(name=f"{name}_{date}.csv", content=buf.getvalue().encode())
)