Skip to content

Commit

Permalink
fix merge
Browse files Browse the repository at this point in the history
  • Loading branch information
tybug committed Jan 7, 2025
1 parent e8d4c58 commit b6e2342
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hypothesis-python/src/hypothesis/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,9 @@
get_type_hints,
int_from_bytes,
)
from hypothesis.internal.conjecture.choice import ChoiceT
from hypothesis.internal.conjecture.data import (
ConjectureData,
IRType,
PrimitiveProvider,
Status,
)
Expand Down Expand Up @@ -331,7 +331,7 @@ def encode_failure(choices):
return base64.b64encode(blob)


def decode_failure(blob: bytes) -> Sequence[IRType]:
def decode_failure(blob: bytes) -> Sequence[ChoiceT]:
try:
decoded = base64.b64decode(blob)
except Exception:
Expand Down

0 comments on commit b6e2342

Please sign in to comment.