Improve doc
This commit is contained in:
parent
ce85620f78
commit
3d4758c0d9
2 changed files with 7 additions and 4 deletions
|
@ -9,8 +9,10 @@ CONTEXT_SETTINGS = dict(help_option_names=["-h", "--help"])
|
||||||
@click.group(context_settings=CONTEXT_SETTINGS)
|
@click.group(context_settings=CONTEXT_SETTINGS)
|
||||||
@click.version_option()
|
@click.version_option()
|
||||||
def cli():
|
def cli():
|
||||||
pass # This function acts only as a group to collect other subcommands
|
"""
|
||||||
# As such, it intentionally has no body
|
Import your data to YNAB with the processors listed below
|
||||||
|
or manage your config.
|
||||||
|
"""
|
||||||
|
|
||||||
|
|
||||||
cli.add_command(ynab.config, name="config")
|
cli.add_command(ynab.config, name="config")
|
||||||
|
|
|
@ -29,8 +29,9 @@ def get_config_file_name():
|
||||||
|
|
||||||
@click.group()
|
@click.group()
|
||||||
def config():
|
def config():
|
||||||
pass # This function acts only as a group to collect other subcommands
|
"""
|
||||||
# As such, it intentionally has no body
|
Manage configuration with subcommands
|
||||||
|
"""
|
||||||
|
|
||||||
|
|
||||||
@config.command("edit")
|
@config.command("edit")
|
||||||
|
|
Loading…
Reference in a new issue