www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | LICENSE

commit 1d5042a2958314782a64dd5bb84d198af28f59d4
parent 62d4a1a9ae618fa0011a1897e13480bd5e98657c
Author: Suzanne Soy <ligo@suzanne.soy>
Date:   Thu, 21 Jan 2021 23:46:46 +0000

02020-01-21 stream: Cleanup

Diffstat:
MInitGui.py | 9---------
1 file changed, 0 insertions(+), 9 deletions(-)

diff --git 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")