diff options
Diffstat (limited to 'main.py')
-rw-r--r-- | main.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -37,6 +37,6 @@ def email(btc): btc_price = price() alert = 33000 -if btc_price == alert_threshold: +if btc_price == alert: email(btc_price) print(f"Alert! BTC price is {btc_price} USD. Email sent.") |