Ko HanJong

Results 3 comments of Ko HanJong

What about defining a variable to share Options? ```python import typer app = typer.Typer() def name_callback(value: str): if value != "Camila": raise typer.BadParameter("Only Camila is allowed") return value ValidatedName =...

Let say I want to `pip install myproject_1[group_a]` For now, it seems I have to write it this way: ```toml # myproject_1 [tool.poetry.dependencies] package_1 = "^0.0.1" # annoying repetition 1...