From 38f3528fc2921093939b45878c63ec2c901b4b4b Mon Sep 17 00:00:00 2001 From: Lance Edgar Date: Mon, 1 Jul 2024 11:50:30 -0500 Subject: [PATCH] fix: use rattail function to create top-level command share code in case logic ever changes --- messkit/commands.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/messkit/commands.py b/messkit/commands.py index 58172cc..921161e 100644 --- a/messkit/commands.py +++ b/messkit/commands.py @@ -26,11 +26,11 @@ Messkit commands import typer -from rattail.commands.typer import typer_callback +from rattail.commands.typer import make_typer -messkit_typer = typer.Typer( - callback=typer_callback, +messkit_typer = make_typer( + name='messkit', help="Messkit (Generic Data App)" )