mirror of
https://github.com/bec-project/bec_widgets.git
synced 2026-03-09 18:27:52 +01:00
9 lines
238 B
Python
9 lines
238 B
Python
class BECWidget:
|
|
"""Base class for all BEC widgets."""
|
|
|
|
def closeEvent(self, event):
|
|
if hasattr(self, "cleanup"):
|
|
self.cleanup()
|
|
if hasattr(super(), "closeEvent"):
|
|
super().closeEvent(event)
|