8000 Fixed typo · PNPtutorials/twilio-python@316c6ab · GitHub
[go: up one dir, main page]

Skip to content

Commit 316c6ab

Browse files
committed
Fixed typo
account_uri not account_url! ;)
1 parent 971ed0e commit 316c6ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

twilio/rest/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ def __init__(self, account=None, token=None, base="https://api.twilio.com",
5858
self.auth,
5959
timeout
6060
)
61-
self.addresses = Addresses(self.account_url, self.auth, timeout)
61+
self.addresses = Addresses(self.account_uri, self.auth, timeout)
6262
self.calls = Calls(self.account_uri, self.auth, timeout)
6363
self.caller_ids = CallerIds(self.account_uri, self.auth, timeout)
6464
self.connect_apps = ConnectApps(self.account_uri, self.auth, timeout)

0 commit comments

Comments
 (0)
0