| D | ui.py | 1 # Copyright © 2019-2020 Intel Corporation 21 """Urwid UI for pick script.""" 46 def __init__(self, *args, ui: 'UI', **kwargs): argument 48 self.ui = ui 53 def __init__(self, *args, ui: 'UI', **kwargs): argument 55 self.ui = ui 57 def keypress(self, size: int, key: str) -> typing.Optional[str]: 61 asyncio.ensure_future(self.ui.update()) 63 self.ui.add() 75 def __init__(self, ui: 'UI', commit: 'core.Commit'): argument [all …]
|