# __init__.py: toggle button widget module initialization # $Id: __init__.py,v 1.8 2007/03/27 07:01:51 agriggio Exp $ # # Copyright (c) 2002-2007 Alberto Griggio # License: MIT (see license.txt) # THIS PROGRAM COMES WITH NO WARRANTY def initialize(): import common import codegen codegen.initialize() if common.use_gui: import toggle_button return toggle_button.initialize()