Skip to content

Commit

Permalink
fix: Address broken Hypothesis imports
Browse files Browse the repository at this point in the history
  • Loading branch information
aiven-anton committed Feb 13, 2024
1 parent 765d1f7 commit 323253b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/kio/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.0.0a2"
__version__ = "0.0.0a3"
4 changes: 2 additions & 2 deletions src/kio/static/primitive.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@
from typing import Final
from typing import Self

from hypothesis import assume

from ._phantom import Phantom
from ._phantom import Predicate

Expand Down Expand Up @@ -128,6 +126,7 @@ class i32Timedelta(
):
@classmethod
def __hypothesis_hook__(cls) -> None: # pragma: no cover
from hypothesis import assume
from hypothesis.strategies import SearchStrategy
from hypothesis.strategies import composite
from hypothesis.strategies import integers
Expand Down Expand Up @@ -163,6 +162,7 @@ class i64Timedelta(
):
@classmethod
def __hypothesis_hook__(cls) -> None: # pragma: no cover
from hypothesis import assume
from hypothesis.strategies import SearchStrategy
from hypothesis.strategies import composite
from hypothesis.strategies import integers
Expand Down

0 comments on commit 323253b

Please sign in to comment.