feat: display logo when running codeflash --help

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
aseembits93 2026-04-06 16:06:56 -07:00
parent 94e1b02597
commit e3488bce6f

View file

@ -33,6 +33,8 @@ def main() -> None:
from codeflash.telemetry import posthog_cf from codeflash.telemetry import posthog_cf
from codeflash.telemetry.sentry import init_sentry from codeflash.telemetry.sentry import init_sentry
if "--help" in sys.argv or "-h" in sys.argv:
print_codeflash_banner()
args = parse_args() args = parse_args()
if args.command != "auth": if args.command != "auth":
print_codeflash_banner() print_codeflash_banner()