Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
4 changes: 2 additions & 2 deletions firebase_admin/_auth_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ def create_user(self, **kwargs): # pylint: disable=differing-param-doc
"""Creates a new user account with the specified properties.

Args:
kwargs: A series of keyword arguments (optional).
**kwargs: A series of keyword arguments (optional).

Keyword Args:
uid: User ID to assign to the newly created user (optional).
Expand Down Expand Up @@ -312,7 +312,7 @@ def update_user(self, uid, **kwargs): # pylint: disable=differing-param-doc

Args:
uid: A user ID string.
kwargs: A series of keyword arguments (optional).
**kwargs: A series of keyword arguments (optional).

Keyword Args:
display_name: The user's display name (optional). Can be removed by explicitly passing
Expand Down
2 changes: 1 addition & 1 deletion firebase_admin/_http_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ class call this method to send HTTP requests out. Refer to
Args:
method: HTTP method name as a string (e.g. get, post).
url: URL of the remote endpoint.
kwargs: An additional set of keyword arguments to be passed into the requests API
**kwargs: An additional set of keyword arguments to be passed into the requests API
(e.g. json, params, timeout).

Returns:
Expand Down
2 changes: 1 addition & 1 deletion firebase_admin/_messaging_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ class APNSPayload:

Args:
aps: A ``messaging.Aps`` instance to be included in the payload.
kwargs: Arbitrary keyword arguments to be included as custom fields in the payload
**kwargs: Arbitrary keyword arguments to be included as custom fields in the payload
(optional).
"""

Expand Down
4 changes: 2 additions & 2 deletions firebase_admin/auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@ def create_user(**kwargs): # pylint: disable=differing-param-doc
"""Creates a new user account with the specified properties.

Args:
kwargs: A series of keyword arguments (optional).
**kwargs: A series of keyword arguments (optional).

Keyword Args:
uid: User ID to assign to the newly created user (optional).
Expand Down Expand Up @@ -438,7 +438,7 @@ def update_user(uid, **kwargs): # pylint: disable=differing-param-doc

Args:
uid: A user ID string.
kwargs: A series of keyword arguments (optional).
**kwargs: A series of keyword arguments (optional).

Keyword Args:
display_name: The user's display name (optional). Can be removed by explicitly passing
Expand Down
2 changes: 1 addition & 1 deletion firebase_admin/db.py
Original file line number Diff line number Diff line change
Expand Up @@ -907,7 +907,7 @@ def request(self, method, url, **kwargs):
Args:
method: HTTP method name as a string (e.g. get, post).
url: URL path of the remote endpoint. This will be appended to the server's base URL.
kwargs: An additional set of keyword arguments to be passed into requests API
**kwargs: An additional set of keyword arguments to be passed into requests API
(e.g. json, params).

Returns:
Expand Down