(self, items_type: Any)
| 402 | return core_schema.dict_schema(self.generate_schema(keys_type), self.generate_schema(values_type)) |
| 403 | |
| 404 | def _set_schema(self, items_type: Any) -> CoreSchema: |
| 405 | return core_schema.set_schema(self.generate_schema(items_type)) |
| 406 | |
| 407 | def _frozenset_schema(self, items_type: Any) -> CoreSchema: |
| 408 | return core_schema.frozenset_schema(self.generate_schema(items_type)) |
no test coverage detected