diff --git a/htpy/__init__.py b/htpy/__init__.py index 4e5885e..979bedf 100644 --- a/htpy/__init__.py +++ b/htpy/__init__.py @@ -1,12 +1,8 @@ from __future__ import annotations -import keyword - -__version__ = "24.10.1" -__all__: list[str] = [] - import dataclasses import functools +import keyword import typing as t from collections.abc import Callable, Generator, Iterable, Iterator @@ -15,6 +11,8 @@ if t.TYPE_CHECKING: from types import UnionType +__version__ = "24.10.1" +__all__: list[str] = [] BaseElementSelf = t.TypeVar("BaseElementSelf", bound="BaseElement") ElementSelf = t.TypeVar("ElementSelf", bound="Element")