Coverage for docs_src/subcommands/callback_override/tutorial004.py: 100%
14 statements
« prev ^ index » next coverage.py v7.6.1, created at 2025-04-14 00:18 +0000
« prev ^ index » next coverage.py v7.6.1, created at 2025-04-14 00:18 +0000
1import typer 1iabcdefgh
3app = typer.Typer() 1iabcdefgh
6def default_callback(): 1iabcdefgh
7 print("Running a users command") 1iabcdefgh
10users_app = typer.Typer(callback=default_callback) 1iabcdefgh
13def callback_for_add_typer(): 1iabcdefgh
14 print("I have the high land! Running users command") 1iabcdefgh
17app.add_typer(users_app, name="users", callback=callback_for_add_typer) 1iabcdefgh
20@users_app.callback() 1iabcdefgh
21def user_callback(): 1abcdefgh
22 print("Callback override, running users command") 1iabcdefgh
25@users_app.command() 1iabcdefgh
26def create(name: str): 1iabcdefgh
27 print(f"Creating user: {name}") 1iabcdefgh
30if __name__ == "__main__": 1iabcdefgh
31 app() 1iabcdefgh