Skip to content

fix: cyclic-import lint error #147

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 10, 2023
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