diff --git a/gatorgrade/main.py b/gatorgrade/main.py index f968b943..23fd8b04 100644 --- a/gatorgrade/main.py +++ b/gatorgrade/main.py @@ -10,7 +10,17 @@ from gatorgrade.output.output import run_checks # create an app for the Typer-based CLI -app = typer.Typer(add_completion=False) + +# define the emoji that will be prepended to the help message +gatorgrade_emoji = "🐊" + +# create a Typer app that +# --> does not support completion +# --> has a specified help message with an emoji +app = typer.Typer( + add_completion=False, + help=f"{gatorgrade_emoji} Run the GatorGrader checks in the specified gatorgrade.yml file.", +) # create a default console for printing with rich console = Console()