(self, *optionaldict: Any, **kwargs: Any)
| 205 | _is_immutable: bool = True |
| 206 | |
| 207 | def unique_params(self, *optionaldict: Any, **kwargs: Any) -> NoReturn: |
| 208 | raise NotImplementedError("Immutable objects do not support copying") |
| 209 | |
| 210 | def params(self, *optionaldict: Any, **kwargs: Any) -> NoReturn: |
| 211 | raise NotImplementedError("Immutable objects do not support copying") |
no outgoing calls