diff options
Diffstat (limited to 'python')
| -rw-r--r-- | python/recon_bowdst.py | 2 |
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()) ) |
