@@ -88,7 +88,7 @@ class Event(_core.CloudEvent[_core.T]):
8888_C2 = _typing .Callable [[_E2 ], None ]
8989
9090AuthType = _typing .Literal ["service_account" , "api_key" , "system" ,
91- "unauthenticated" , "unknown" ]
91+ "unauthenticated" , "unknown" ]
9292
9393
9494@_dataclass .dataclass (frozen = True )
@@ -106,10 +106,10 @@ class EventWithAuthContext(Event[_core.T]):
106106
107107
108108def _firestore_endpoint_handler (
109- func : _C1 | _C2 | _C3 | _C4 ,
110- event_type : str ,
111- document_pattern : _path_pattern .PathPattern ,
112- raw : _ce .CloudEvent ,
109+ func : _C1 | _C2 | _C3 | _C4 ,
110+ event_type : str ,
111+ document_pattern : _path_pattern .PathPattern ,
112+ raw : _ce .CloudEvent ,
113113) -> None :
114114 event_attributes = raw ._get_attributes ()
115115 event_data : _typing .Any = raw .get_data ()
@@ -266,7 +266,7 @@ def on_document_written_wrapped(raw: _ce.CloudEvent):
266266
267267@_util .copy_func_kwargs (FirestoreOptions )
268268def on_document_written_with_auth_context (** kwargs
269- ) -> _typing .Callable [[_C1 ], _C1 ]:
269+ ) -> _typing .Callable [[_C1 ], _C1 ]:
270270 """
271271 Event handler that triggers when a document is created, updated, or deleted in Firestore.
272272 This trigger will also provide the authentication context of the principal who triggered
@@ -365,7 +365,7 @@ def on_document_updated_wrapped(raw: _ce.CloudEvent):
365365
366366@_util .copy_func_kwargs (FirestoreOptions )
367367def on_document_updated_with_auth_context (** kwargs
368- ) -> _typing .Callable [[_C1 ], _C1 ]:
368+ ) -> _typing .Callable [[_C1 ], _C1 ]:
369369 """
370370 Event handler that triggers when a document is updated in Firestore.
371371 This trigger will also provide the authentication context of the principal who triggered
@@ -464,7 +464,7 @@ def on_document_created_wrapped(raw: _ce.CloudEvent):
464464
465465@_util .copy_func_kwargs (FirestoreOptions )
466466def on_document_created_with_auth_context (** kwargs
467- ) -> _typing .Callable [[_C2 ], _C2 ]:
467+ ) -> _typing .Callable [[_C2 ], _C2 ]:
468468 """
469469 Event handler that triggers when a document is created in Firestore.
470470 This trigger will also provide the authentication context of the principal who triggered
@@ -563,7 +563,7 @@ def on_document_deleted_wrapped(raw: _ce.CloudEvent):
563563
564564@_util .copy_func_kwargs (FirestoreOptions )
565565def on_document_deleted_with_auth_context (** kwargs
566- ) -> _typing .Callable [[_C2 ], _C2 ]:
566+ ) -> _typing .Callable [[_C2 ], _C2 ]:
567567 """
568568 Event handler that triggers when a document is deleted in Firestore.
569569 This trigger will also provide the authentication context of the principal who triggered
0 commit comments