mirror of
https://github.com/home-assistant/core.git
synced 2025-11-08 10:29:27 +00:00
Use PEP 695 for simple type aliases (#117633)
This commit is contained in:
@@ -30,7 +30,7 @@ from .json import find_paths_unserializable_data, json_bytes, json_dumps
|
||||
_LOGGER = logging.getLogger(__name__)
|
||||
|
||||
|
||||
AllowCorsType = Callable[[AbstractRoute | AbstractResource], None]
|
||||
type AllowCorsType = Callable[[AbstractRoute | AbstractResource], None]
|
||||
KEY_AUTHENTICATED: Final = "ha_authenticated"
|
||||
KEY_ALLOW_ALL_CORS = AppKey[AllowCorsType]("allow_all_cors")
|
||||
KEY_ALLOW_CONFIGRED_CORS = AppKey[AllowCorsType]("allow_configured_cors")
|
||||
|
||||
Reference in New Issue
Block a user