From 1aa3e512dfcf43626a12e5c431631532e9c89adf Mon Sep 17 00:00:00 2001 From: krzywon Date: Tue, 2 May 2023 14:24:12 -0400 Subject: [PATCH] Remove UI conversion from run.py --- run.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/run.py b/run.py index 2799848ca2..5dfc71fe99 100644 --- a/run.py +++ b/run.py @@ -82,10 +82,8 @@ def prepare(): docpath = joinpath(root, 'docs', 'sphinx-docs', '_build', 'html') os.environ['SASVIEW_DOC_PATH'] = docpath -if __name__ == "__main__": - from sas.qtgui.convertUI import rebuild_new_ui - rebuild_new_ui() +if __name__ == "__main__": prepare()