Skip to content

Commit 9ccac63

Browse files
craigcitrotheacodes
authored andcommitted
Fix a typo in credentials.py. (#256)
1 parent 96db48c commit 9ccac63

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

packages/google-auth/google/auth/credentials.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,9 @@ def __init__(self):
5353
def expired(self):
5454
"""Checks if the credentials are expired.
5555
56-
Note that credentials can be invalid but not expired becaue Credentials
57-
with :attr:`expiry` set to None is considered to never expire.
56+
Note that credentials can be invalid but not expired because
57+
Credentials with :attr:`expiry` set to None is considered to never
58+
expire.
5859
"""
5960
if not self.expiry:
6061
return False

0 commit comments

Comments
 (0)