@@ -695,7 +695,7 @@ def show(
695
695
title = "User Input" ,
696
696
width = DEFAULT_INPUTWINDOW_WIDTH ,
697
697
height = DEFAULT_INPUTWINDOW_HEIGHT ,
698
- ** kwargs ,
698
+ ** kwargs
699
699
):
700
700
"""Show user input window.
701
701
@@ -1188,7 +1188,7 @@ def show(
1188
1188
width = DEFAULT_INPUTWINDOW_WIDTH ,
1189
1189
height = DEFAULT_INPUTWINDOW_HEIGHT ,
1190
1190
exitscript = False ,
1191
- ** kwargs ,
1191
+ ** kwargs
1192
1192
):
1193
1193
"""Show user input window.
1194
1194
Args:
@@ -2007,7 +2007,7 @@ def show(
2007
2007
search_db , # pylint: disable=W0221
2008
2008
width = DEFAULT_SEARCHWND_WIDTH ,
2009
2009
height = DEFAULT_SEARCHWND_HEIGHT ,
2010
- ** kwargs ,
2010
+ ** kwargs
2011
2011
):
2012
2012
"""Show search prompt."""
2013
2013
dlg = cls (search_db , width , height , ** kwargs )
@@ -3552,7 +3552,7 @@ def ask_for_unique_string(
3552
3552
prompt = prompt ,
3553
3553
title = title ,
3554
3554
reserved_values = reserved_values ,
3555
- ** kwargs ,
3555
+ ** kwargs
3556
3556
)
3557
3557
3558
3558
@@ -3589,7 +3589,7 @@ def ask_for_one_item(items, default=None, prompt=None, title=None, **kwargs):
3589
3589
default = default ,
3590
3590
prompt = prompt ,
3591
3591
title = title ,
3592
- ** kwargs ,
3592
+ ** kwargs
3593
3593
)
3594
3594
3595
3595
@@ -3663,7 +3663,7 @@ def ask_for_number_slider(
3663
3663
max = max ,
3664
3664
min = min ,
3665
3665
interval = interval ,
3666
- ** kwargs ,
3666
+ ** kwargs
3667
3667
)
3668
3668
3669
3669
0 commit comments