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

@@ -20,8 +20,8 @@ class MovePanel(ScreenPanel):
distance = 1
distances = ['.1', '.5', '1', '5', '10', '25', '50']
def __init__(self, screen, title, back=True, action_bar=True, printer_name=True):
super().__init__(screen, title, back, action_bar, printer_name)
def __init__(self, screen, title, back=True):
super().__init__(screen, title, back)
self.settings = {}
self.menu = ['move_menu']