(self, **kw: Any)
| 1586 | return bool(self.local_opts and self.strategy is None) |
| 1587 | |
| 1588 | def _clone(self, **kw: Any) -> Self: |
| 1589 | cls = self.__class__ |
| 1590 | s = cls.__new__(cls) |
| 1591 | |
| 1592 | self._shallow_copy_to(s) |
| 1593 | return s |
| 1594 | |
| 1595 | def _update_opts(self, **kw: Any) -> _LoadElement: |
| 1596 | new = self._clone() |
no test coverage detected