From b262e1518fbea19679957dd5123977dc0ef864ac Mon Sep 17 00:00:00 2001 From: Elisha Eshed Date: Tue, 17 Sep 2024 18:18:35 +0300 Subject: [PATCH] Order train station names in Israel rail API (#126121) --- homeassistant/components/israel_rail/config_flow.py | 1 + 1 file changed, 1 insertion(+) diff --git a/homeassistant/components/israel_rail/config_flow.py b/homeassistant/components/israel_rail/config_flow.py index 3adecaf428c..0f78c227d0a 100644 --- a/homeassistant/components/israel_rail/config_flow.py +++ b/homeassistant/components/israel_rail/config_flow.py @@ -12,6 +12,7 @@ from homeassistant.config_entries import ConfigFlow, ConfigFlowResult from .const import CONF_DESTINATION, CONF_START, DOMAIN STATIONS_NAMES = [station["Heb"] for station in STATIONS.values()] +STATIONS_NAMES.sort() DATA_SCHEMA = vol.Schema( {