(self, schema_item: _SI)
| 249 | return {} |
| 250 | |
| 251 | def _schema_item_copy(self, schema_item: _SI) -> _SI: |
| 252 | if "info" in self.__dict__: |
| 253 | schema_item.info = self.info.copy() |
| 254 | schema_item.dispatch._update(self.dispatch) |
| 255 | return schema_item |
| 256 | |
| 257 | _use_schema_map = True |
| 258 |