From 6f875e04fecdc07f448679f42ed762848be97a3a Mon Sep 17 00:00:00 2001 From: Markos Hudson <202008899+rb-mhudson@users.noreply.github.com> Date: Tue, 9 Dec 2025 18:46:12 -0800 Subject: [PATCH] fix --version --- ampy/cli.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) mode change 100644 => 100755 ampy/cli.py diff --git a/ampy/cli.py b/ampy/cli.py old mode 100644 new mode 100755 index dadd371..d24cd90 --- a/ampy/cli.py +++ b/ampy/cli.py @@ -1,3 +1,4 @@ +#!/usr/bin/env python3 # Adafruit MicroPython Tool - Command Line Interface # Author: Tony DiCola # Copyright (c) 2016 Adafruit Industries @@ -85,7 +86,7 @@ def windows_full_port_name(portname): help="Delay in seconds before entering RAW MODE (default 0). Can optionally specify with AMPY_DELAY environment variable.", metavar="DELAY", ) -@click.version_option() +@click.version_option(package_name='adafruit-ampy') def cli(port, baud, delay): """ampy - Adafruit MicroPython Tool