Skip to content

Commit 3afff81

Browse files
committed
fix: pep8
1 parent dfbaa78 commit 3afff81

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

numbers/rent_and_configure_a_virtual_number_using_rest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
headers = {"Content-Type": "application/json"}
2727

28-
response = requests.post(url, json=payload, headers=headers, auth=('YOUR_username','YOUR_password'))
28+
response = requests.post(url, json=payload, headers=headers, auth=('YOUR_username', 'YOUR_password'))
2929

3030
data = response.json()
3131
print(data)

numbers/search_for_a_virtual_number_using_rest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"regionCode": "US",
88
"type": "LOCAL"
99
}
10-
response = requests.get(url, params=query, auth=('YOUR_username','YOUR_password'))
10+
response = requests.get(url, params=query, auth=('YOUR_username', 'YOUR_password'))
1111

1212
data = response.json()
1313
print(data)

0 commit comments

Comments
 (0)