Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion firebase_admin/_auth_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ def get_users(self, identifiers):

Returns:
GetUsersResult: A ``GetUsersResult`` instance corresponding to the
specified identifiers.
specified identifiers.

Raises:
ValueError: If any of the identifiers are invalid or if more than 100
Expand Down
2 changes: 1 addition & 1 deletion firebase_admin/_auth_providers.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ def get_next_page(self):

Returns:
ListProviderConfigsPage: Next page of provider configs, or None if this is the last
page.
page.
"""
if self.has_next_page:
return self.__class__(self._download, self.next_page_token, self._max_results)
Expand Down
6 changes: 3 additions & 3 deletions firebase_admin/_user_mgt.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def last_refresh_timestamp(self):

Returns:
integer: Milliseconds since epoch timestamp, or `None` if the user was
never active.
never active.
"""
return self._last_refresh_timestamp

Expand Down Expand Up @@ -215,7 +215,7 @@ def tokens_valid_after_timestamp(self):

Returns:
int: Timestamp in milliseconds since the epoch, truncated to the second.
All tokens issued before that time are considered revoked.
All tokens issued before that time are considered revoked.
"""
valid_since = self._data.get('validSince')
if valid_since is not None:
Expand Down Expand Up @@ -752,7 +752,7 @@ def delete_users(self, uids, force_delete=False):

Returns:
BatchDeleteAccountsResponse: Server's proto response, wrapped in a
python object.
python object.

Raises:
ValueError: If any of the identifiers are invalid or if more than 1000
Expand Down
8 changes: 5 additions & 3 deletions firebase_admin/auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@

__all__ = [
'ActionCodeSettings',
'BatchDeleteAccountsResponse',
'CertificateFetchError',
'Client',
'ConfigurationNotFoundError',
Expand All @@ -43,6 +44,8 @@
'ExpiredIdTokenError',
'ExpiredSessionCookieError',
'ExportedUserRecord',
'DeleteUsersResult',
'GetUsersResult',
'ImportUserRecord',
'InsufficientPermissionError',
'InvalidDynamicLinkDomainError',
Expand Down Expand Up @@ -363,7 +366,7 @@ def get_users(identifiers, app=None):

Returns:
GetUsersResult: A ``GetUsersResult`` instance corresponding to the
specified identifiers.
specified identifiers.

Raises:
ValueError: If any of the identifiers are invalid or if more than 100
Expand Down Expand Up @@ -522,8 +525,7 @@ def delete_users(uids, app=None):

Returns:
DeleteUsersResult: The total number of successful/failed deletions, as
well as the array of errors that correspond to the failed
deletions.
well as the array of errors that correspond to the failed deletions.

Raises:
ValueError: If any of the identifiers are invalid or if more than 1000
Expand Down