(self)
| 30 | |
| 31 | class TD2(TD): |
| 32 | def __init__(self): |
| 33 | super().__init__() |
| 34 | self.add_option("three", str, "dthree", "help") |
| 35 | self.add_option("four", str, "dfour", "help") |
| 36 | |
| 37 | |
| 38 | class TM(optmanager.OptManager): |
nothing calls this directly
no test coverage detected