@@ -26,13 +26,11 @@ Creates a new API App.
2626``` python
2727from pprint import pprint
2828
29- from dropbox_sign import \
30- ApiClient, ApiException, Configuration, apis, models
29+ from dropbox_sign import ApiClient, ApiException, Configuration, apis, models
3130
3231configuration = Configuration(
3332 # Configure HTTP basic authorization: api_key
3433 username = " YOUR_API_KEY" ,
35-
3634 # or, configure Bearer (JWT) authorization: oauth2
3735 # access_token="YOUR_ACCESS_TOKEN",
3836)
@@ -50,7 +48,7 @@ with ApiClient(configuration) as api_client:
5048 primary_button_text_color = " #ffffff" ,
5149 )
5250
53- custom_logo_file = open (' ./CustomLogoFile.png' , ' rb ' )
51+ custom_logo_file = open (" ./CustomLogoFile.png" , " rb " )
5452
5553 data = models.ApiAppCreateRequest(
5654 name = " My Production App" ,
@@ -109,13 +107,11 @@ Deletes an API App. Can only be invoked for apps you own.
109107* Bearer (JWT) Authentication (oauth2):
110108
111109```python
112- from dropbox_sign import \
113- ApiClient, ApiException, Configuration, apis
110+ from dropbox_sign import ApiClient, ApiException, Configuration, apis
114111
115112configuration = Configuration(
116113 # Configure HTTP basic authorization: api_key
117114 username="YOUR_API_KEY",
118-
119115 # or, configure Bearer (JWT) authorization: oauth2
120116 # access_token="YOUR_ACCESS_TOKEN",
121117)
@@ -175,13 +171,11 @@ Returns an object with information about an API App.
175171```python
176172from pprint import pprint
177173
178- from dropbox_sign import \
179- ApiClient, ApiException, Configuration, apis
174+ from dropbox_sign import ApiClient, ApiException, Configuration, apis
180175
181176configuration = Configuration(
182177 # Configure HTTP basic authorization: api_key
183178 username="YOUR_API_KEY",
184-
185179 # or, configure Bearer (JWT) authorization: oauth2
186180 # access_token="YOUR_ACCESS_TOKEN",
187181)
@@ -242,13 +236,11 @@ Returns a list of API Apps that are accessible by you. If you are on a team with
242236```python
243237from pprint import pprint
244238
245- from dropbox_sign import \
246- ApiClient, ApiException, Configuration, apis
239+ from dropbox_sign import ApiClient, ApiException, Configuration, apis
247240
248241configuration = Configuration(
249242 # Configure HTTP basic authorization: api_key
250243 username="YOUR_API_KEY",
251-
252244 # or, configure Bearer (JWT) authorization: oauth2
253245 # access_token="YOUR_ACCESS_TOKEN",
254246)
@@ -314,13 +306,11 @@ Updates an existing API App. Can only be invoked for apps you own. Only the fiel
314306```python
315307from pprint import pprint
316308
317- from dropbox_sign import \
318- ApiClient, ApiException, Configuration, apis, models
309+ from dropbox_sign import ApiClient, ApiException, Configuration, apis, models
319310
320311configuration = Configuration(
321312 # Configure HTTP basic authorization: api_key
322313 username="YOUR_API_KEY",
323-
324314 # or, configure Bearer (JWT) authorization: oauth2
325315 # access_token="YOUR_ACCESS_TOKEN",
326316)
@@ -333,7 +323,7 @@ with ApiClient(configuration) as api_client:
333323 primary_button_text_color="#ffffff",
334324 )
335325
336- custom_logo_file = open(' ./CustomLogoFile.png', 'rb' )
326+ custom_logo_file = open(" ./CustomLogoFile.png", "rb" )
337327
338328 data = models.ApiAppUpdateRequest(
339329 name="New Name",
0 commit comments