| 13 | |
| 14 | |
| 15 | class TO(optmanager.OptManager): |
| 16 | def __init__(self): |
| 17 | super().__init__() |
| 18 | self.add_option("one", Optional[int], None, "help") |
| 19 | self.add_option("two", Optional[int], 2, "help") |
| 20 | self.add_option("bool", bool, False, "help") |
| 21 | self.add_option("required_int", int, 2, "help") |
| 22 | |
| 23 | |
| 24 | class TD(optmanager.OptManager): |
no outgoing calls