Skip to content

Commit

Permalink
Merge branch 'main' into feat/logger
Browse files Browse the repository at this point in the history
  • Loading branch information
exaby73 committed Oct 10, 2023
2 parents a02b001 + 89cadc1 commit 224948b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
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

0 comments on commit 224948b

Please sign in to comment.