← All tips

Python: type hints help maintenance

pythontyping

Add hints for better editor support and safer refactors.

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