1
0
mirror of https://github.com/home-assistant/core.git synced 2025-04-30 04:07:51 +00:00
2022-01-20 10:21:54 -10:00

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"