Reorder libraries on app.py

This commit is contained in:
Stefano Assenzo 2023-01-28 17:41:45 +00:00 committed by GitHub
parent 23ac13f5d1
commit 3f75138d16
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -8,6 +8,6 @@ PHONE_NUMBER_PERSONAL = os.getenv('PHONE_NUMBER_PERSONAL')
client = Client(SID, AUTH_TOKEN)
message=client.messages.create(to=PHONE_NUMBER_PERSONAL,
message = client.messages.create(to=PHONE_NUMBER_PERSONAL,
from_=PHONE_NUMBER_BOT,
body="Hello from Python!")