mirror of
https://github.com/home-assistant/core.git
synced 2025-05-04 05:59:16 +00:00
8 lines
212 B
Python
8 lines
212 B
Python
"""Life360 integration helpers."""
|
|
from life360 import Life360
|
|
|
|
|
|
def get_api(authorization=None):
|
|
"""Create Life360 api object."""
|
|
return Life360(timeout=3.05, max_retries=2, authorization=authorization)
|