(self, schema_item: _SI)
| 260 | return {} |
| 261 | |
| 262 | def _schema_item_copy(self, schema_item: _SI) -> _SI: |
| 263 | if "info" in self.__dict__: |
| 264 | schema_item.info = self.info.copy() |
| 265 | schema_item.dispatch._update(self.dispatch) |
| 266 | return schema_item |
| 267 | |
| 268 | _use_schema_map = True |
| 269 |