From dbb606601d43fee2b284538d847fc5ad0e1e3d07 Mon Sep 17 00:00:00 2001 From: 2Shirt <2xShirt@gmail.com> Date: Mon, 29 May 2023 17:32:05 -0700 Subject: [PATCH] Drop test() function --- scripts/wk/ui/tui.py | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/scripts/wk/ui/tui.py b/scripts/wk/ui/tui.py index 447ac28d..2c59cf0d 100644 --- a/scripts/wk/ui/tui.py +++ b/scripts/wk/ui/tui.py @@ -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.")