(schemas: Iterable[JsonDict])
| 2629 | |
| 2630 | |
| 2631 | def _deduplicate_schemas(schemas: Iterable[JsonDict]) -> list[JsonDict]: |
| 2632 | return list({_make_json_hashable(schema): schema for schema in schemas}.values()) |
| 2633 | |
| 2634 | |
| 2635 | def _make_json_hashable(value: JsonValue) -> _HashableJsonValue: |
no test coverage detected