diff --git a/test/test_soi.py b/test/test_soi.py index 911b273d04222a4719e754ef545ce9e6f2209784..e55e1604fc32f0c0da6c753d402c46e389cd89af 100644 --- a/test/test_soi.py +++ b/test/test_soi.py @@ -33,9 +33,9 @@ class TestModule(ModuleBase, QWidget, metaclass=Meta): def __init__(self, color, width, height, *args, **kwargs): self.type = "TestModule" - # super(ModuleBase, self).__init__() + QWidget.__init__(self, *args, **kwargs) ModuleBase.__init__(self) - super(TestModule, self).__init__(*args, **kwargs) + self.setAutoFillBackground(True) palette = self.palette() palette.setColor(QPalette.Window, QColor(color))