mirror of
https://github.com/esphome/esphome.git
synced 2025-01-06 12:51:45 +01:00
07c3ee75e5
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: J. Nick Koston <nick@koston.org>
20 lines
597 B
Python
20 lines
597 B
Python
"""Enum backports from standard lib."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from enum import Enum
|
|
from typing import Any
|
|
|
|
|
|
class StrEnum(str, Enum):
|
|
"""Partial backport of Python 3.11's StrEnum for our basic use cases."""
|
|
|
|
def __new__(cls, value: str, *args: Any, **kwargs: Any) -> StrEnum:
|
|
"""Create a new StrEnum instance."""
|
|
if not isinstance(value, str):
|
|
raise TypeError(f"{value!r} is not a string")
|
|
return super().__new__(cls, value, *args, **kwargs)
|
|
|
|
def __str__(self) -> str:
|
|
"""Return self.value."""
|
|
return str(self.value)
|