From b266352f2fb98991a36191039aee54bac0429b77 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 2d154c63c2..8dae8c4993 100644 --- a/tools/idf_py_actions/serial_ext.py +++ b/tools/idf_py_actions/serial_ext.py @@ -193,6 +193,7 @@ def action_extensions(base_actions, project_path): 'help': 'Serial port.', 'scope': 'global', 'envvar': 'ESPPORT', + 'type': click.Path(), 'default': None, }