Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 0c82d14

Browse files
committed
[Librarian] Regenerated @ 7a7839b47231760a343c1db31f805001d48237b2
1 parent f2e58ee commit 0c82d14

File tree

320 files changed

+4464
-7535
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

320 files changed

+4464
-7535
lines changed

CHANGES.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@ twilio-python Changelog
33

44
Here you can see the full list of changes between each twilio-python release.
55

6+
[2017-10-27] Version 6.8.2
7+
---------------------------
8+
**Chat**
9+
- Add Binding resource
10+
- Add UserBinding resource
11+
12+
613
[2017-10-20] Version 6.8.1
714
---------------------------
815
**Library**

tests/integration/accounts/v1/credential/test_public_key.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,9 +90,7 @@ def test_create_request(self):
9090
self.client.accounts.v1.credentials \
9191
.public_key.create(public_key="publickey")
9292

93-
values = {
94-
'PublicKey': "publickey",
95-
}
93+
values = {'PublicKey': "publickey",}
9694

9795
self.holodeck.assert_has_request(Request(
9896
'post',

tests/integration/api/v2010/account/call/test_feedback.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,7 @@ def test_create_request(self):
2222
.calls(sid="CAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa") \
2323
.feedback().create(quality_score=1)
2424

25-
values = {
26-
'QualityScore': 1,
27-
}
25+
values = {'QualityScore': 1,}
2826

2927
self.holodeck.assert_has_request(Request(
3028
'post',
@@ -101,9 +99,7 @@ def test_update_request(self):
10199
.calls(sid="CAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa") \
102100
.feedback().update(quality_score=1)
103101

104-
values = {
105-
'QualityScore': 1,
106-
}
102+
values = {'QualityScore': 1,}
107103

108104
self.holodeck.assert_has_request(Request(
109105
'post',

tests/integration/api/v2010/account/conference/test_participant.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -100,10 +100,7 @@ def test_create_request(self):
100100
.conferences(sid="CFaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa") \
101101
.participants.create(from_="+987654321", to="+123456789")
102102

103-
values = {
104-
'From': "+987654321",
105-
'To': "+123456789",
106-
}
103+
values = {'From': "+987654321", 'To': "+123456789",}
107104

108105
self.holodeck.assert_has_request(Request(
109106
'post',

tests/integration/api/v2010/account/incoming_phone_number/test_assigned_add_on.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -144,9 +144,7 @@ def test_create_request(self):
144144
.incoming_phone_numbers(sid="PNaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa") \
145145
.assigned_add_ons.create(installed_add_on_sid="XEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa")
146146

147-
values = {
148-
'InstalledAddOnSid': "XEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
149-
}
147+
values = {'InstalledAddOnSid': "XEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",}
150148

151149
self.holodeck.assert_has_request(Request(
152150
'post',

tests/integration/api/v2010/account/incoming_phone_number/test_local.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -124,9 +124,7 @@ def test_create_request(self):
124124
.incoming_phone_numbers \
125125
.local.create(phone_number="+987654321")
126126

127-
values = {
128-
'PhoneNumber': "+987654321",
129-
}
127+
values = {'PhoneNumber': "+987654321",}
130128

131129
self.holodeck.assert_has_request(Request(
132130
'post',

tests/integration/api/v2010/account/incoming_phone_number/test_mobile.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -124,9 +124,7 @@ def test_create_request(self):
124124
.incoming_phone_numbers \
125125
.mobile.create(phone_number="+987654321")
126126

127-
values = {
128-
'PhoneNumber': "+987654321",
129-
}
127+
values = {'PhoneNumber': "+987654321",}
130128

131129
self.holodeck.assert_has_request(Request(
132130
'post',

tests/integration/api/v2010/account/incoming_phone_number/test_toll_free.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -124,9 +124,7 @@ def test_create_request(self):
124124
.incoming_phone_numbers \
125125
.toll_free.create(phone_number="+987654321")
126126

127-
values = {
128-
'PhoneNumber': "+987654321",
129-
}
127+
values = {'PhoneNumber': "+987654321",}
130128

131129
self.holodeck.assert_has_request(Request(
132130
'post',

tests/integration/api/v2010/account/queue/test_member.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,7 @@ def test_update_request(self):
5555
.queues(sid="QUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa") \
5656
.members(call_sid="CAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa").update(url="https://example.com", method="GET")
5757

58-
values = {
59-
'Url': "https://example.com",
60-
'Method': "GET",
61-
}
58+
values = {'Url': "https://example.com", 'Method': "GET",}
6259

6360
self.holodeck.assert_has_request(Request(
6461
'post',

tests/integration/api/v2010/account/sip/credential_list/test_credential.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -103,10 +103,7 @@ def test_create_request(self):
103103
.credential_lists(sid="CLaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa") \
104104
.credentials.create(username="username", password="password")
105105

106-
values = {
107-
'Username': "username",
108-
'Password': "password",
109-
}
106+
values = {'Username': "username", 'Password': "password",}
110107

111108
self.holodeck.assert_has_request(Request(
112109
'post',

0 commit comments

Comments
 (0)