Drop test() function

This commit is contained in:
2Shirt 2023-05-29 17:32:05 -07:00
parent 1dc22d5991
commit dbb606601d
Signed by: 2Shirt
GPG key ID: 152FAC923B0E132C

View file

@ -357,18 +357,6 @@ def layout_needs_fixed(layout) -> bool:
# Done
return needs_fixed
def test() -> TUI:
"""TODO: Deleteme"""
ui = TUI()
ui.add_info_pane(lines=10, text='Info One')
ui.add_info_pane(lines=10, text='Info Two')
ui.add_info_pane(lines=10, text='Info Three')
ui.add_worker_pane(lines=3, text='Work One')
ui.add_worker_pane(lines=3, text='Work Two')
ui.add_worker_pane(lines=3, text='Work Three')
ui.fix_layout()
return ui
if __name__ == '__main__':
print("This file is not meant to be called directly.")