mirror of
https://github.com/esphome/esphome.git
synced 2024-11-22 15:08:10 +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
2617e5092b
commit
4e520d13dd
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