Skip to content

Commit 119e6e3

Browse files
committed
fix: get_data as not None
1 parent d4de502 commit 119e6e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/firebase_functions/storage.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ def _message_handler(
204204
raw: _ce.CloudEvent,
205205
) -> None:
206206
event_attributes = raw._get_attributes()
207-
data = raw.get_data()
207+
data: _typing.Any = raw.get_data()
208208

209209
print(event_attributes)
210210
print(data)

0 commit comments

Comments
 (0)