Skip to content

Commit

Permalink
Fix a typo in credentials.py.
Browse files Browse the repository at this point in the history
  • Loading branch information
craigcitro committed May 15, 2018
1 parent 839d468 commit ee598d6
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions google/auth/credentials.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,9 @@ def __init__(self):
def expired(self):
"""Checks if the credentials are expired.
Note that credentials can be invalid but not expired becaue Credentials
with :attr:`expiry` set to None is considered to never expire.
Note that credentials can be invalid but not expired because
Credentials with :attr:`expiry` set to None is considered to never
expire.
"""
if not self.expiry:
return False
Expand Down

0 comments on commit ee598d6

Please sign in to comment.