From 2d8438d146510b7d2e719b8d13fb07a78c0a4a79 Mon Sep 17 00:00:00 2001 From: Andreas Pelme Date: Thu, 24 Oct 2024 11:57:20 +0200 Subject: [PATCH] Fix ordering of imports/constants. --- htpy/__init__.py | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) 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")