tags | title | |||
---|---|---|---|---|
|
Re-using Typer Options |
Options used for multiple commands can be defined at a common place. This makes the option name and docs consistent.
Define the option:
short_name_option: str = typer.Option(
None,
help="The short name of the talk.",
)
Reference the option in the command argument:
@app.command()
def create(
short_name: str = short_name_option,