(self)
| 23 | |
| 24 | class TD(optmanager.OptManager): |
| 25 | def __init__(self): |
| 26 | super().__init__() |
| 27 | self.add_option("one", str, "done", "help") |
| 28 | self.add_option("two", str, "dtwo", "help") |
| 29 | |
| 30 | |
| 31 | class TD2(TD): |
nothing calls this directly
no test coverage detected