| 441 | self.Center() |
| 442 | |
| 443 | class Main(wx.App): |
| 444 | def __init__(self, redirect=False, filename=None): |
| 445 | """Constructor""" |
| 446 | wx.App.__init__(self, redirect, filename) |
| 447 | dlg = MainFrame() |
| 448 | dlg.Show() |
| 449 | |
| 450 | if __name__ == "__main__": |
| 451 | app = Main() |
no outgoing calls
no test coverage detected