1from Foundation import *
2from InfoWindowController import InfoWindowController
3
4class ToDoAppDelegate (NSObject):
5
6    @objc.IBAction
7    def showInfo_(self, sender):
8        InfoWindowController.sharedInfoWindowController().showWindow_(sender)
9