8000 Code formatting some references in docstrings (#163) · samtstern/firebase-admin-python@351d624 · GitHub
[go: up one dir, main page]

Skip to content

Commit 351d624

Browse files
authored
Code formatting some references in docstrings (firebase#163)
1 parent 9444c95 commit 351d624

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

firebase_admin/auth.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ def verify_id_token(id_token, app=None, check_revoked=False):
9090
Raises:
9191
ValueError: If the JWT was found to be invalid, or if the App's project ID cannot
9292
be determined.
93-
AuthError: If check_revoked is requested and the token was revoked.
93+
AuthError: If ``check_revoked`` is requested and the token was revoked.
9494
"""
9595
if not isinstance(check_revoked, bool):
9696
# guard against accidental wrong assignment.
@@ -143,7 +143,7 @@ def verify_session_cookie(session_cookie, check_revoked=False, app=None):
143143
Raises:
144144
ValueError: If the cookie was found to be invalid, or if the App's project ID cannot
145145
be determined.
146-
AuthError: If check_revoked is requested and the cookie was revoked.
146+
AuthError: If ``check_revoked`` is requested and the cookie was revoked.
147147
"""
148148
token_verifier = _get_auth_service(app).token_verifier
149149
verified_claims = token_verifier.verify_session_cookie(session_cookie)

0 commit comments

Comments
 (0)
0