Skip to content

Commit fb7c220

Browse files
committed
PEP8
1 parent 863c982 commit fb7c220

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

webexteamssdk/api/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ def __init__(self, access_token=None, base_url=DEFAULT_BASE_URL,
109109
the user oauth process.
110110
oauth_redirect_uri(basestring): The redirect URI used in the user
111111
OAuth process.
112-
proxies(dict): Dictionary of proxies passed on to the requests
112+
proxies(dict): Dictionary of proxies passed on to the requests
113113
session.
114114
115115
Returns:
@@ -166,7 +166,7 @@ def __init__(self, access_token=None, base_url=DEFAULT_BASE_URL,
166166
access_token=access_token,
167167
base_url=base_url,
168168
single_request_timeout=single_request_timeout,
169-
wait_on_rate_limit=wait_on_rate_limit,
169+
wait_on_rate_limit=wait_on_rate_limit,
170170
proxies=proxies
171171
)
172172

webexteamssdk/models/mixins/message.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,12 +88,11 @@ def personEmail(self):
8888
"""The email address of the message author."""
8989
return self._json_data.get('personEmail')
9090

91-
9291
@property
9392
def mentionedPeople(self):
9493
"""People IDs for anyone mentioned in the message."""
9594
return self._json_data.get('mentionedPeople')
96-
95+
9796
@property
9897
def mentionedGroups(self):
9998
"""Group names for the groups mentioned in the message."""

webexteamssdk/restsession.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ def __init__(self, access_token, base_url,
112112
HTTP REST API request.
113113
wait_on_rate_limit(bool): Enable or disable automatic rate-limit
114114
handling.
115-
proxies(dict): Dictionary of proxies passed on to the requests
115+
proxies(dict): Dictionary of proxies passed on to the requests
116116
session.
117117
118118
Raises:

0 commit comments

Comments
 (0)