screen_panel: remove unused parameters

This commit is contained in:
alfrix
2022-07-18 21:53:09 -03:00
committed by Alfredo Monclus
parent 9c2b52009a
commit eb17bb58ad
17 changed files with 33 additions and 33 deletions

View File

@@ -13,8 +13,8 @@ def create_panel(*args):
class PrinterSelect(ScreenPanel):
def __init__(self, screen, title, back=True, action_bar=True, printer_name=True):
super().__init__(screen, title, False, False, False)
def __init__(self, screen, title, back=True):
super().__init__(screen, title, False)
def initialize(self, panel_name):