Skip to content

Latest commit

 

History

History
36 lines (26 loc) · 638 Bytes

re-using-options.md

File metadata and controls

36 lines (26 loc) · 638 Bytes
tags title
consistency
option
naming
Re-using Typer Options

Overview

Options used for multiple commands can be defined at a common place. This makes the option name and docs consistent.

Example

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,

More Info