From b83a56512a3b96af837a1470956915280f24d18d Mon Sep 17 00:00:00 2001 From: Peter Dragun Date: Wed, 6 Sep 2023 14:32:48 +0200 Subject: [PATCH] fix(tools): fix autocomplete for --port option Closes https://github.com/espressif/esp-idf/issues/7970 --- tools/idf_py_actions/serial_ext.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/idf_py_actions/serial_ext.py b/tools/idf_py_actions/serial_ext.py index 5dba481326a..354685eedfc 100644 --- a/tools/idf_py_actions/serial_ext.py +++ b/tools/idf_py_actions/serial_ext.py @@ -29,6 +29,7 @@ 'help': 'Serial port.', 'scope': 'global', 'envvar': 'ESPPORT', + 'type': click.Path(), 'default': None, }