We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10db35e commit 3829a35Copy full SHA for 3829a35
components/esp_wifi_remote/scripts/generate_and_check.py
@@ -642,8 +642,7 @@ def get_idf_version(idf_path):
642
major = match.group(1)
643
minor = match.group(2)
644
patch = match.group(4) if match.group(4) else '0' # Default to 0 if patch not present
645
- return f"{major}.{minor}.{patch}"
646
-
+ return f'{major}.{minor}.{patch}'
647
# Fallback to environment variable
648
idf_version = os.getenv('ESP_IDF_VERSION')
649
if idf_version is None:
0 commit comments