From 5e0092b18101aa7cb97d18d448b311b1f9b28f62 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 1 Sep 2026 18:24:10 +0000 Subject: [PATCH 1/2] Bump ty from 0.0.69 to 0.0.75 Bumps [ty](https://github.com/astral-sh/ty) from 0.0.69 to 0.0.75. - [Release notes](https://github.com/astral-sh/ty/releases) - [Changelog](https://github.com/astral-sh/ty/blob/main/CHANGELOG.md) - [Commits](https://github.com/astral-sh/ty/compare/0.0.69...0.0.75) --- updated-dependencies: - dependency-name: ty dependency-version: 0.0.75 dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- requirements/develop.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/develop.txt b/requirements/develop.txt index d4ac7de..6f1928b 100644 --- a/requirements/develop.txt +++ b/requirements/develop.txt @@ -10,4 +10,4 @@ wemake-python-styleguide==1.8.0 ruff==0.16.5 -ty==0.0.69 +ty==0.0.75 From 87a225efc8536b529c196a93384d0b6acefa04f2 Mon Sep 17 00:00:00 2001 From: Chase Finch Date: Tue, 1 Sep 2026 14:32:16 -0400 Subject: [PATCH 2/2] Update data_enum.py --- data_enum/data_enum.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/data_enum/data_enum.py b/data_enum/data_enum.py index 9f9bc30..c2f4b0d 100644 --- a/data_enum/data_enum.py +++ b/data_enum/data_enum.py @@ -37,6 +37,18 @@ class MemberDoesNotExistError(Exception): class DataEnumMeta(type): """Metaclass for DataEnum that handles member registration and lookup.""" + _data_attrs: dict[str, type] + _unique_attrs: frozenset[str] + _default_attrs: dict[str, Any] + _unique_together_groups: dict[str, tuple[str, ...]] + _unique_together_by_attrs: dict[frozenset[str], str] + _members_decl: tuple[str, ...] + _member_map: dict[str, DataEnum] + _unique_indexes: dict[str, dict[Any, DataEnum]] + _unique_together_indexes: dict[str, dict[tuple[Any, ...], DataEnum]] + _is_complete: bool + _instances_created: int + def __new__( mcs, name: str, @@ -230,6 +242,8 @@ class DataEnum(metaclass=DataEnumMeta): # noqa: WPS338 __slots__ = () + _name: str + def __init__(self, **kwargs: Any) -> None: # noqa: ANN401 """Initialize a DataEnum member.""" enum_cls = type(self)