(self, _)
| 77 | return True |
| 78 | |
| 79 | def __deepcopy__(self, _): |
| 80 | o = _Option(self.name, self.typespec, self.default, self.help, self.choices) |
| 81 | if self.has_changed(): |
| 82 | o.value = self.current() |
| 83 | return o |
| 84 | |
| 85 | |
| 86 | @dataclass |
nothing calls this directly
no test coverage detected