panels: remove initialize from the panels that do not have a menu

This commit is contained in:
alfrix
2022-11-17 07:53:17 -03:00
parent 972a09df41
commit 45ab86204b
29 changed files with 48 additions and 98 deletions

View File

@@ -11,7 +11,8 @@ def create_panel(*args):
class ExamplePanel(ScreenPanel):
def initialize(self, panel_name):
def __init__(self, screen, title, back=True):
super().__init__(screen, title, back)
# Create gtk items here