Skip to content

Commit ccca469

Browse files
committed
change docstring to state limited-use tokens
1 parent 96c7083 commit ccca469

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

firebase_admin/app_check.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def _get_app_check_service(app) -> Any:
2727
return _utils.get_app_service(app, _APP_CHECK_ATTRIBUTE, _AppCheckService)
2828

2929
def verify_token(token: str, app=None, consume: bool = False) -> Dict[str, Any]:
30-
"""Verifies a Firebase App Check token.
30+
"""Verifies a Firebase App Check token, optionally consuming limited-use tokens.
3131
3232
Args:
3333
token: A token from App Check.
@@ -83,7 +83,7 @@ def __init__(self, app):
8383

8484

8585
def verify_token(self, token: str, consume: bool = False) -> Dict[str, Any]:
86-
"""Verifies a Firebase App Check token."""
86+
"""Verifies a Firebase App Check token, optionally consuming limited-use tokens."""
8787
_Validators.check_string("app check token", token)
8888

8989
# Obtain the Firebase App Check Public Keys

0 commit comments

Comments
 (0)