typing
¶
Functions:
Name | Description |
---|---|
override |
Decorator to indicate overriding a method. |
override
¶
override(func: V) -> V
Decorator to indicate overriding a method. the true override method is implemented until in python 3.12
Parameters:
Name | Type | Description | Default |
---|---|---|---|
func
|
V
|
The function to decorate. |
required |
Returns:
Type | Description |
---|---|
V
|
The decorated function. |