Allow user-defined kwargs passed to click.group (#1092)

Fixes #1086
This commit is contained in:
Bertrand Bonnefoy-Claudet
2017-03-29 19:20:41 +02:00
committed by Guido van Rossum
parent 8c1690befc
commit 138073922d

View File

@@ -57,6 +57,8 @@ def group(
short_help: str = None,
options_metavar: str = '[OPTIONS]',
add_help_option: bool = True,
# User-defined
**kwargs: Any,
) -> _Decorator:
...