(opt)
| 18 | |
| 19 | |
| 20 | def can_edit_inplace(opt): |
| 21 | if opt.choices: |
| 22 | return False |
| 23 | if opt.typespec in [str, int, Optional[str], Optional[int]]: |
| 24 | return True |
| 25 | |
| 26 | |
| 27 | class OptionItem(urwid.WidgetWrap): |
no outgoing calls
no test coverage detected
searching dependent graphs…