(self)
| 37 | |
| 38 | class TM(optmanager.OptManager): |
| 39 | def __init__(self): |
| 40 | super().__init__() |
| 41 | self.add_option("two", Sequence[str], ["foo"], "help") |
| 42 | self.add_option("one", Optional[str], None, "help") |
| 43 | |
| 44 | |
| 45 | class TS(optmanager.OptManager): |
nothing calls this directly
no test coverage detected