Skip to content

Commit 80f7acf

Browse files
author
Izaak Gough
committed
chore: change params type
1 parent 7513eee commit 80f7acf

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/firebase_functions/params.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def _quote_if_string(literal: _T) -> _T:
5454
return _obj_cel_name(literal) if not isinstance(literal, str) else f'"{literal}"'
5555

5656

57-
_params: dict[str, Expression] = {}
57+
_params: dict[str, "Param[_typing.Any] | SecretParam"] = {}
5858

5959

6060
@_dataclasses.dataclass(frozen=True)

0 commit comments

Comments
 (0)