We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Adding type hints to public API functions would significantly improve developer experience and enable better tooling support.
mypy
Add type annotations to all public functions:
# Before: def process(data, config=None): ... # After: from typing import Optional, Dict, Any def process(data: Dict[str, Any], config: Optional[Dict] = None) -> bool: ...
This is a non-breaking change and can be done incrementally, starting with the most-used public functions.
Feature Request
Summary
Adding type hints to public API functions would significantly improve developer experience and enable better tooling support.
Motivation
mypycan catch bugs before runtimeProposed Change
Add type annotations to all public functions:
Additional Context
This is a non-breaking change and can be done incrementally, starting with the most-used public functions.