Skip to content

Commit 681df66

Browse files
committed
typing
1 parent 4181f0c commit 681df66

File tree

1 file changed

+1
-1
lines changed
  • hypothesis-python/src/hypothesis/internal/conjecture

1 file changed

+1
-1
lines changed

hypothesis-python/src/hypothesis/internal/conjecture/shrinker.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ def sort_key(buffer: SortKeyT) -> tuple[int, SortKeyT]:
8080
return (len(buffer), buffer)
8181

8282

83-
def sort_key_ir(nodes: list[IRNode]) -> tuple[int, tuple[int]]:
83+
def sort_key_ir(nodes: Sequence[IRNode]) -> tuple[int, tuple[int]]:
8484
return (
8585
len(nodes),
8686
tuple(choice_to_index(node.value, node.kwargs) for node in nodes),

0 commit comments

Comments
 (0)