From 7d7e493ed6e040359242e85eb82bed266b5cd903 Mon Sep 17 00:00:00 2001 From: Caleb Date: Tue, 12 Sep 2023 14:46:36 -0400 Subject: [PATCH] added change to typer call for help on no arg --- chasten/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chasten/main.py b/chasten/main.py index f6ed91f6..7f5cbae6 100644 --- a/chasten/main.py +++ b/chasten/main.py @@ -27,7 +27,7 @@ ) # create a Typer object to support the command-line interface -cli = typer.Typer() +cli = typer.Typer(no_args_is_help=True) # create a small bullet for display in the output small_bullet_unicode = constants.markers.Small_Bullet_Unicode