Skip to content

Commit 7236a0c

Browse files
committed
Fix Failing CI
1 parent 539ce83 commit 7236a0c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

stubs/jsonschema/jsonschema/_utils.pyi

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ def load_schema(name): ...
1616
def format_as_index(container: str, indices) -> str: ...
1717
def find_additional_properties(instance: Iterable[Any], schema: Mapping[Any, Any]) -> Generator[Any, None, None]: ...
1818
def extras_msg(extras: Iterable[Any] | Sized) -> str: ...
19-
def ensure_list(thing) -> list: ...
19+
def ensure_list(thing) -> list[Any]: ...
2020
def equal(one, two) -> bool: ...
2121
def unbool(element, true=..., false=...): ...
2222
def uniq(container) -> bool: ...
23-
def find_evaluated_item_indexes_by_schema(validator, instance, schema) -> list: ...
24-
def find_evaluated_property_keys_by_schema(validator, instance, schema) -> list: ...
23+
def find_evaluated_item_indexes_by_schema(validator, instance, schema) -> list[Any]: ...
24+
def find_evaluated_property_keys_by_schema(validator, instance, schema) -> list[Any]: ...

0 commit comments

Comments
 (0)