From b30dc866e209e6c3541a8b094ebdca76866ae12a Mon Sep 17 00:00:00 2001 From: Paul-Louis NECH Date: Sat, 30 Nov 2019 13:35:57 +0100 Subject: [PATCH] refactor(baby): Always SMS --- baby.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/baby.py b/baby.py index 5ccb443..bb1c00e 100644 --- a/baby.py +++ b/baby.py @@ -13,11 +13,11 @@ def main(): if "Out of stock" not in stock: sms("%s in stock šŸŽ‰ \"%s\"\nšŸ”— %s" % (name, stock, url)) else: - print("%s not in stock, try again šŸ™ƒ" % name) + sms("%s not in stock, I'll keep checking for you šŸ™ƒ" % name) def sms(msg: str): - print("Sending sms: \"%s\"" % msg) + print("Sending sms:\n%s" % msg) res = requests.post("https://smsapi.free-mobile.fr/sendmsg", json={"user": "23355840", "pass": "1zdVdBEjjSqnv3", -- libgit2 0.27.0