From 0aa26fa29d4654f8e6d274cf19d1d492655c130f Mon Sep 17 00:00:00 2001 From: Caleb Date: Sun, 17 Sep 2023 20:39:00 -0400 Subject: [PATCH] visual changes --- chasten/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/chasten/main.py b/chasten/main.py index 00d376bc..2a88c742 100644 --- a/chasten/main.py +++ b/chasten/main.py @@ -912,11 +912,11 @@ def log() -> None: @cli.command() def version(): - """Display the version of Chasten.""" + """🖥️ Display the version of chasten.""" # Get Chasten version from util file version_string = util.get_chasten_version() # output chasten version - typer.echo(f"{version_string}") + typer.echo(f"chasten {version_string}") # ---