Skip to content

Commit

Permalink
PEP8
Browse files Browse the repository at this point in the history
  • Loading branch information
cmlccie committed Sep 20, 2019
1 parent 863c982 commit fb7c220
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions webexteamssdk/api/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ def __init__(self, access_token=None, base_url=DEFAULT_BASE_URL,
the user oauth process.
oauth_redirect_uri(basestring): The redirect URI used in the user
OAuth process.
proxies(dict): Dictionary of proxies passed on to the requests
proxies(dict): Dictionary of proxies passed on to the requests
session.
Returns:
Expand Down Expand Up @@ -166,7 +166,7 @@ def __init__(self, access_token=None, base_url=DEFAULT_BASE_URL,
access_token=access_token,
base_url=base_url,
single_request_timeout=single_request_timeout,
wait_on_rate_limit=wait_on_rate_limit,
wait_on_rate_limit=wait_on_rate_limit,
proxies=proxies
)

Expand Down
3 changes: 1 addition & 2 deletions webexteamssdk/models/mixins/message.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,12 +88,11 @@ def personEmail(self):
"""The email address of the message author."""
return self._json_data.get('personEmail')


@property
def mentionedPeople(self):
"""People IDs for anyone mentioned in the message."""
return self._json_data.get('mentionedPeople')

@property
def mentionedGroups(self):
"""Group names for the groups mentioned in the message."""
Expand Down
2 changes: 1 addition & 1 deletion webexteamssdk/restsession.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ def __init__(self, access_token, base_url,
HTTP REST API request.
wait_on_rate_limit(bool): Enable or disable automatic rate-limit
handling.
proxies(dict): Dictionary of proxies passed on to the requests
proxies(dict): Dictionary of proxies passed on to the requests
session.
Raises:
Expand Down

0 comments on commit fb7c220

Please sign in to comment.