File tree Expand file tree Collapse file tree 3 files changed +14
-6
lines changed Expand file tree Collapse file tree 3 files changed +14
-6
lines changed Original file line number Diff line number Diff line change @@ -139,3 +139,8 @@ doc/dist
139
139
.idea
140
140
.vscode /*
141
141
! .vscode /settings.json
142
+
143
+ # Local development files
144
+ async.md
145
+ modernization.md
146
+ uv.lock
Original file line number Diff line number Diff line change 27
27
from firebase_functions .core import CloudEvent as _CloudEvent
28
28
from firebase_functions .core import T , _with_init
29
29
30
- # Explicitly import AlertType to make it available in the public API.
31
- # pylint: disable=unused-import
32
- from firebase_functions .options import AlertType , FirebaseAlertOptions
30
+ # Re-export AlertType from options module so users can import it directly from alerts_fn
31
+ # This provides a more convenient API: from firebase_functions.alerts_fn import AlertType
32
+ from firebase_functions .options import (
33
+ AlertType , # noqa: F401
34
+ FirebaseAlertOptions ,
35
+ )
33
36
34
37
35
38
@_dataclasses .dataclass (frozen = True )
Original file line number Diff line number Diff line change 33
33
import firebase_functions .private .util as _util
34
34
from firebase_functions .core import _with_init
35
35
36
- # Export for user convenience.
37
- # pylint: disable=unused- import
38
- from firebase_functions .options import Timezone
36
+ # Re-export Timezone from options module so users can import it directly from scheduler_fn
37
+ # This provides a more convenient API: from firebase_functions.scheduler_fn import Timezone
38
+ from firebase_functions .options import Timezone # noqa: F401
39
39
40
40
41
41
@_dataclasses .dataclass (frozen = True )
You can’t perform that action at this time.
0 commit comments