There was an error while loading. Please reload this page.
1 parent d286c13 commit a68c565Copy full SHA for a68c565
dialog.py
@@ -405,6 +405,8 @@ def _simple_option(option, enable):
405
"trim": lambda enable: _simple_option("--trim", enable),
406
"version": lambda enable: _simple_option("--version", enable),
407
"visit_items": lambda enable: _simple_option("--visit-items", enable),
408
+ "week_start": lambda start: _dash_escape_nf(
409
+ ("--week-start", str(start) if isinstance(start, int) else start)),
410
"yes_label": lambda s: _dash_escape_nf(("--yes-label", s)) }
411
412
0 commit comments