diff --git a/gooey/python_bindings/argparse_to_json.py b/gooey/python_bindings/argparse_to_json.py index 7def51e..10d381b 100644 --- a/gooey/python_bindings/argparse_to_json.py +++ b/gooey/python_bindings/argparse_to_json.py @@ -270,7 +270,7 @@ def categorize(actions, widget_dict, options): elif is_counter(action): _json = action_to_json(action, _get_widget(action, 'Counter'), options) # pre-fill the 'counter' dropdown - _json['data']['choices'] = list(map(str, range(1, 11))) + _json['data']['choices'] = list(map(str, range(0, 11))) yield _json else: raise UnknownWidgetType(action)