Skip to content

Commit

Permalink
Maggiore protezione contro configurazioni errate
Browse files Browse the repository at this point in the history
  • Loading branch information
virtualdj committed Nov 19, 2024
1 parent e17e9b4 commit 46e1b7a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions custom_components/pun_sensor/coordinator.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,11 @@ def __init__(self, hass: HomeAssistant, config: ConfigEntry) -> None:

# Inizializza i valori di configurazione (dalle opzioni o dalla configurazione iniziale)
self.actual_data_only = config.options.get(
CONF_ACTUAL_DATA_ONLY, config.data[CONF_ACTUAL_DATA_ONLY]
CONF_ACTUAL_DATA_ONLY, config.data.get(CONF_ACTUAL_DATA_ONLY, False)
)
self.scan_hour = config.options.get(
CONF_SCAN_HOUR, config.data.get(CONF_SCAN_HOUR, 1)
)
self.scan_hour = config.options.get(CONF_SCAN_HOUR, config.data[CONF_SCAN_HOUR])

# Carica il minuto di esecuzione dalla configurazione (o lo crea se non esiste)
self.scan_minute = 0
Expand Down

0 comments on commit 46e1b7a

Please sign in to comment.