Skip to content
This repository has been archived by the owner on Jun 12, 2023. It is now read-only.

Commit

Permalink
feature(#7): fixed to reference twilio envs
Browse files Browse the repository at this point in the history
  • Loading branch information
thomas committed May 30, 2023
1 parent 4070163 commit 11a6b87
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/common/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@


# Twilio
ACCOUNT_SID = os.environ["TWILIO_ACCOUNT_SID"]
AUTH_TOKEN = os.environ["TWILIO_AUTH_TOKEN"]
ACCOUNT_SID = os.getenv("TWILIO_ACCOUNT_SID")
AUTH_TOKEN = os.getenv("TWILIO_AUTH_TOKEN")


def get_firebase_cred():
Expand Down

0 comments on commit 11a6b87

Please sign in to comment.