mirror of
https://github.com/Electric-Special/ha-core.git
synced 2026-03-22 18:05:45 +01:00
7 lines
256 B
Python
7 lines
256 B
Python
"""Soma helpers functions."""
|
|
|
|
|
|
def is_api_response_success(api_response: dict) -> bool:
|
|
"""Check if the response returned from the Connect API is a success or not."""
|
|
return "result" in api_response and api_response["result"].lower() == "success"
|