There was an error while loading. Please reload this page.
1 parent 487c2a6 commit 85ed02dCopy full SHA for 85ed02d
1 file changed
pytools/ew/widgets.py
@@ -46,8 +46,8 @@ class EwGroup(MyQtWidget, EwBasic):
46
def radraw_handler(self, vals: List[Union[float, int, str, NoDataStub]], vals_map: Dict):
47
pass
48
49
- def __init__(self, widgets: List[EwBasic | MyQtWidget]):
50
- MyQtWidget.__init__(self, layout_vertical=False)
+ def __init__(self, widgets: List[EwBasic | MyQtWidget], *, layout_vertical : bool = False):
+ MyQtWidget.__init__(self, layout_vertical=layout_vertical)
51
EwBasic.__init__(self)
52
53
self.group_widgets = widgets
0 commit comments