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
139139.idea
140140.vscode /*
141141! .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 2727from firebase_functions .core import CloudEvent as _CloudEvent
2828from firebase_functions .core import T , _with_init
2929
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+ )
3336
3437
3538@_dataclasses .dataclass (frozen = True )
Original file line number Diff line number Diff line change 3333import firebase_functions .private .util as _util
3434from firebase_functions .core import _with_init
3535
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
3939
4040
4141@_dataclasses .dataclass (frozen = True )
You can’t perform that action at this time.
0 commit comments