Browse Source

Fix group_by default

pull/150/head
chriskiehl 8 years ago
parent
commit
7530a7edba
1 changed files with 1 additions and 1 deletions
  1. 2
      gooey/python_bindings/gooey_decorator.py

2
gooey/python_bindings/gooey_decorator.py

@ -35,7 +35,7 @@ def Gooey(f=None,
progress_expr=None, progress_expr=None,
disable_progress_bar_animation=False, disable_progress_bar_animation=False,
disable_stop_button=False, disable_stop_button=False,
group_by_type=False):
group_by_type=True):
''' '''
Decorator for client code's main function. Decorator for client code's main function.
Serializes argparse data to JSON for use with the Gooey front end Serializes argparse data to JSON for use with the Gooey front end

Loading…
Cancel
Save