(self, a0: QObject, a1: QEvent)
| 27 | super().__init__(argv) |
| 28 | |
| 29 | def notify(self, a0: QObject, a1: QEvent) -> bool: |
| 30 | try: |
| 31 | done = super().notify(a0, a1) |
| 32 | return done |
| 33 | except Exception as e: |
| 34 | MCSL2Logger.critical(e) |
| 35 | return False |
| 36 | |
| 37 | |
| 38 | if __name__ == "__main__": |