Skip to content

Commit

Permalink
Fix ordering of imports/constants.
Browse files Browse the repository at this point in the history
  • Loading branch information
pelme committed Oct 24, 2024
1 parent c2bff6c commit 2d8438d
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions htpy/__init__.py
Original file line number Diff line number Diff line change
@@ -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

Expand All @@ -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")
Expand Down

0 comments on commit 2d8438d

Please sign in to comment.