Skip to content

Commit

Permalink
Squash AccessTokensAPI assertion error on timeout bug
Browse files Browse the repository at this point in the history
  • Loading branch information
cmlccie committed Sep 9, 2016
1 parent 08edded commit cdaa3b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ciscosparkapi/api/accesstokens.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def __init__(self, base_url, timeout=None):
"""
assert isinstance(base_url, basestring)
assert timeout is None or isinstance(timeout, basestring)
assert timeout is None or isinstance(timeout, int)
super(AccessTokensAPI, self).__init__()
self._base_url = validate_base_url(base_url)
self._timeout = timeout
Expand Down

0 comments on commit cdaa3b9

Please sign in to comment.