python parameters set type and default code example
Example: python 3 define type in arguments with default value
def foo(opts: dict = {}):
pass
print(foo.__annotations__)
def foo(opts: dict = {}):
pass
print(foo.__annotations__)