Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
6 changes: 3 additions & 3 deletions src/firebase_functions/identity_fn.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# limitations under the License.
"""Cloud functions to handle Eventarc events."""

# pylint: disable=protected-access
# pylint: disable=protected-access,cyclic-import
import typing as _typing
import functools as _functools
import datetime as _dt
Expand Down Expand Up @@ -345,7 +345,7 @@ def example(event: identity_fn.AuthBlockingEvent) -> identity_fn.BeforeSignInRes
:param \\*\\*kwargs: Options.
:type \\*\\*kwargs: as :exc:`firebase_functions.options.BlockingOptions`
:rtype: :exc:`typing.Callable`
\\[ \\[ :exc:`firebase_functions.identity_fn.AuthBlockingEvent` \\],
\\[ \\[ :exc:`firebase_functions.identity_fn.AuthBlockingEvent` \\],
:exc:`firebase_functions.identity_fn.BeforeSignInResponse` \\| `None` \\]
A function that takes a AuthBlockingEvent and optionally returns BeforeSignInResponse.
"""
Expand Down Expand Up @@ -399,7 +399,7 @@ def example(event: identity_fn.AuthBlockingEvent) -> identity_fn.BeforeCreateRes
:param \\*\\*kwargs: Options.
:type \\*\\*kwargs: as :exc:`firebase_functions.options.BlockingOptions`
:rtype: :exc:`typing.Callable`
\\[ \\[ :exc:`firebase_functions.identity_fn.AuthBlockingEvent` \\],
\\[ \\[ :exc:`firebase_functions.identity_fn.AuthBlockingEvent` \\],
:exc:`firebase_functions.identity_fn.BeforeCreateResponse` \\| `None` \\]
A function that takes a AuthBlockingEvent and optionally returns BeforeCreateResponse.
"""
Expand Down
2 changes: 1 addition & 1 deletion src/firebase_functions/private/_alerts_fn.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# limitations under the License.
"""Internal utilities for Firebase Alert function types."""

# pylint: disable=protected-access
# pylint: disable=protected-access,cyclic-import
import typing as _typing
import datetime as _dt
import cloudevents.http as _ce
Expand Down