mirror of
https://github.com/lumapu/ahoy.git
synced 2025-05-02 11:45:54 +02:00
fixed NoneType access
This commit is contained in:
parent
a269edc03c
commit
b475c34878
1 changed files with 2 additions and 2 deletions
|
@ -236,7 +236,7 @@ def poll_inverter(inverter, dtu_ser, do_init, retries):
|
||||||
if isinstance(result, hoymiles.decoders.StatusResponse):
|
if isinstance(result, hoymiles.decoders.StatusResponse):
|
||||||
|
|
||||||
data = result.__dict__()
|
data = result.__dict__()
|
||||||
if 'event_count' in data:
|
if data is not None and 'event_count' in data:
|
||||||
if event_message_index[inv_str] < data['event_count']:
|
if event_message_index[inv_str] < data['event_count']:
|
||||||
event_message_index[inv_str] = data['event_count']
|
event_message_index[inv_str] = data['event_count']
|
||||||
command_queue[inv_str].append(hoymiles.compose_send_time_payload(InfoCommands.AlarmData, alarm_id=event_message_index[inv_str]))
|
command_queue[inv_str].append(hoymiles.compose_send_time_payload(InfoCommands.AlarmData, alarm_id=event_message_index[inv_str]))
|
||||||
|
|
Loading…
Add table
Reference in a new issue