diff options
Diffstat (limited to 'python/monthend_interest_recon.py')
| -rw-r--r-- | python/monthend_interest_recon.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/monthend_interest_recon.py b/python/monthend_interest_recon.py index 2568a20f..ddefe9da 100644 --- a/python/monthend_interest_recon.py +++ b/python/monthend_interest_recon.py @@ -167,7 +167,7 @@ if __name__ == "__main__": right_index=True, ) df = df.fillna(0) - df["difference"] = df["amount"] - df["monthly_statement"] + df["difference"] = round(df["amount"] - df["monthly_statement"], 2) if args.accept: ssnc_df = export_data(start, end) for k, v in df["difference"].items(): |
