From 1d5042a2958314782a64dd5bb84d198af28f59d4 Mon Sep 17 00:00:00 2001 From: Suzanne Soy Date: Thu, 21 Jan 2021 23:46:46 +0000 Subject: [PATCH] 02020-01-21 stream: Cleanup --- InitGui.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/InitGui.py b/InitGui.py index 732556a..f123f5b 100644 --- a/InitGui.py +++ b/InitGui.py @@ -1,8 +1,6 @@ import sys -print("AAA") import ExternalAppsList -print("BBB") myIcon = """ /* XPM */ @@ -41,7 +39,6 @@ myIcon = """ "................"}; """ -print("CCC") class XternalAppsWorkbench(Workbench): """Subclasses must implement the appName attribute""" global myIcon @@ -83,17 +80,11 @@ class XternalAppsWorkbench(Workbench): def GetClassName(self): return "Gui::PythonWorkbench" -print("DDD") def addAppWorkbench(appName): workbenchClass = type( "XternalApps" + appName + "Workbench", (XternalAppsWorkbench,), { 'appName': appName }) Gui.addWorkbench(workbenchClass()) -print("EEE") -print(repr(dir(ExternalAppsList))) -print(repr(ExternalAppsList.apps)) for app in ExternalAppsList.apps: - print("FFF " + repr(app)) addAppWorkbench(app) -print("GGG")