ID EN
Typing

Final

Python 3.11

Special typing construct to indicate final names to type checkers.

Syntax

PYTHON
typing.Final

Examples

Example 1
PYTHON
MAX_SIZE: Final = 9000
MAX_SIZE += 1   Error reported by type checker

class Connection:
    TIMEOUT: Final[int] = 10

class FastConnector(Connection):
    TIMEOUT = 1   Error reported by type checker