core/homeassistant/components/life360/helpers.py

8 lines
212 B
Python
Raw Normal View History

2019-06-06 23:07:15 +00:00
"""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)