Skip to content

Commit 224948b

Browse files
authored
Merge branch 'main' into feat/logger
2 parents a02b001 + 89cadc1 commit 224948b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/firebase_functions/identity_fn.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# limitations under the License.
1414
"""Cloud functions to handle Eventarc events."""
1515

16-
# pylint: disable=protected-access
16+
# pylint: disable=protected-access,cyclic-import
1717
import typing as _typing
1818
import functools as _functools
1919
import datetime as _dt
@@ -345,7 +345,7 @@ def example(event: identity_fn.AuthBlockingEvent) -> identity_fn.BeforeSignInRes
345345
:param \\*\\*kwargs: Options.
346346
:type \\*\\*kwargs: as :exc:`firebase_functions.options.BlockingOptions`
347347
:rtype: :exc:`typing.Callable`
348-
\\[ \\[ :exc:`firebase_functions.identity_fn.AuthBlockingEvent` \\],
348+
\\[ \\[ :exc:`firebase_functions.identity_fn.AuthBlockingEvent` \\],
349349
:exc:`firebase_functions.identity_fn.BeforeSignInResponse` \\| `None` \\]
350350
A function that takes a AuthBlockingEvent and optionally returns BeforeSignInResponse.
351351
"""
@@ -399,7 +399,7 @@ def example(event: identity_fn.AuthBlockingEvent) -> identity_fn.BeforeCreateRes
399399
:param \\*\\*kwargs: Options.
400400
:type \\*\\*kwargs: as :exc:`firebase_functions.options.BlockingOptions`
401401
:rtype: :exc:`typing.Callable`
402-
\\[ \\[ :exc:`firebase_functions.identity_fn.AuthBlockingEvent` \\],
402+
\\[ \\[ :exc:`firebase_functions.identity_fn.AuthBlockingEvent` \\],
403403
:exc:`firebase_functions.identity_fn.BeforeCreateResponse` \\| `None` \\]
404404
A function that takes a AuthBlockingEvent and optionally returns BeforeCreateResponse.
405405
"""

src/firebase_functions/private/_alerts_fn.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# limitations under the License.
1414
"""Internal utilities for Firebase Alert function types."""
1515

16-
# pylint: disable=protected-access
16+
# pylint: disable=protected-access,cyclic-import
1717
import typing as _typing
1818
import datetime as _dt
1919
import cloudevents.http as _ce

0 commit comments

Comments
 (0)