Answers for "how to type hint in python"

1

any python type hint

from typing import Any

def my_func(a: Any) -> Any:
	return a
Posted by: Guest on July-22-2021

Code answers related to "how to type hint in python"

Python Answers by Framework

Browse Popular Code Answers by Language