From cf25aa4aa5e644d85ba932a693043ef14b997e5c Mon Sep 17 00:00:00 2001 From: Guy Shefer Date: Wed, 4 Jan 2023 11:54:23 +0200 Subject: [PATCH] Fix README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3396ded..d575813 100644 --- a/README.md +++ b/README.md @@ -17,12 +17,12 @@ pip install Tami4EdgeAPI You first need to obtain a ``refresh_token`` by requesting an sms code to the phone you registered to the app with. ```py -import Tami4EdgeAPI +from Tami4EdgeAPI import Tami4EdgeAPI # You must add the country code! phone_number = "+972xxxxxxxxx" -Tami4EdgeAPI.request_otp() +Tami4EdgeAPI.request_otp(phone_number) otp_code = input("Enter OTP: ") refresh_token = Tami4EdgeAPI.submit_otp(otp_code) ```