Skip to content

Commit 98d4bfd

Browse files
committed
chore: replace Union with |
1 parent fbedbf6 commit 98d4bfd

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/firebase_functions/params.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -190,8 +190,7 @@ class Param(Expression[_T]):
190190
deployments.
191191
"""
192192

193-
input: _typing.Union[TextInput, ResourceInput,
194-
SelectInput[_T]] = TextInput()
193+
input: TextInput | ResourceInput | SelectInput[_T] = TextInput()
195194
"""
196195
The type of input that is required for this param, e.g. TextInput.
197196
"""

0 commit comments

Comments
 (0)