Skip to content

Commit

Permalink
show defaults in CLI, closes #7
Browse files Browse the repository at this point in the history
  • Loading branch information
jankrepl committed Sep 20, 2019
1 parent d7ca33f commit c8c8e8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pychubby/cli.py
Expand Up @@ -72,7 +72,7 @@ def generate(self):
]

operators += [
click.option("--{}".format(k), default=v) for k, v in self.kwargs.items()
click.option("--{}".format(k), default=v, show_default=True) for k, v in self.kwargs.items()
]

def f(*args, **kwargs):
Expand Down

0 comments on commit c8c8e8b

Please sign in to comment.