4747from .webhooks import WebhooksAPI
4848
4949
50-
5150class WebexTeamsAPI (object ):
5251 """Webex Teams API wrapper.
5352
@@ -70,7 +69,8 @@ def __init__(self, access_token=None, base_url=DEFAULT_BASE_URL,
7069 """Create a new WebexTeamsAPI object.
7170
7271 An access token must be used when interacting with the Webex Teams API.
73- This package supports thre methods for you to provide that access token:
72+ This package supports three methods for you to provide that access
73+ token:
7474
7575 1. You may manually specify the access token via the `access_token`
7676 argument, when creating a new WebexTeamsAPI object.
@@ -103,8 +103,8 @@ def __init__(self, access_token=None, base_url=DEFAULT_BASE_URL,
103103 upon creation in the portal.
104104 client_secret(basestring): The client secret of your integration.
105105 Provided upon creation in the portal.
106- oauth_code(basestring): The oauth authorization code provided by the
107- user oauth process.
106+ oauth_code(basestring): The oauth authorization code provided by
107+ the user oauth process.
108108 oauth_redirect_uri(basestring): The redirect URI used in the user
109109 OAuth process.
110110
@@ -134,7 +134,7 @@ def __init__(self, access_token=None, base_url=DEFAULT_BASE_URL,
134134 self .access_tokens = AccessTokensAPI (
135135 self .base_url , object_factory ,
136136 single_request_timeout = single_request_timeout
137- )
137+ )
138138 if not access_token and check_all_not_none (oauth_param_list ):
139139 access_token = self .access_tokens .get (client_id = client_id ,
140140 client_secret = client_secret ,
0 commit comments