mirror of
https://github.com/esphome/esphome.git
synced 2024-11-10 17:27:45 +01:00
List the correct boards when building for ESP32 (#589)
* List the ESP32 boards for ESP32 builds. * Sort the list of valid boards.
This commit is contained in:
parent
72f656ffef
commit
1a4efa1b8c
1 changed files with 1 additions and 1 deletions
|
@ -38,7 +38,7 @@ def validate_board(value):
|
|||
|
||||
if value not in board_pins:
|
||||
raise cv.Invalid(u"Could not find board '{}'. Valid boards are {}".format(
|
||||
value, u', '.join(pins.ESP8266_BOARD_PINS.keys())))
|
||||
value, u', '.join(sorted(board_pins.keys()))))
|
||||
return value
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue