specify multiple parameter types python code example
Example 1: specify return type python function
def greeting(name: str) -> str:
return 'Hello, {}'.format(name)
Example 2: typing multiple types
from typing import Union
def foo(client_id: str) -> Union[list,bool]