diff options
| -rw-r--r-- | python/monthly_interest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/monthly_interest.py b/python/monthly_interest.py index 72987b58..46c8df17 100644 --- a/python/monthly_interest.py +++ b/python/monthly_interest.py @@ -112,7 +112,7 @@ def get_JPM(g): for e in g: print(e.text) if "Page" in e.text: - return float(value) + return float(value.replace(",", "")) value = e.text |
