[🐍PyTricks]: Python 3.5+ type annotations

Source : Dan at Real Python info@realpython.com

# Python 3.5+ supports 'type annotations' that can be
# used with tools like Mypy to write statically typed Python:

def my_add(a: int, b: int) -> int:
    return a + b