1
0
mirror of https://github.com/home-assistant/core.git synced 2026-02-24 11:57:05 +00:00
Files
core/tests/components/letpot/__init__.py
2025-01-08 21:38:52 +01:00

13 lines
322 B
Python

"""Tests for the LetPot integration."""
from letpot.models import AuthenticationInfo
AUTHENTICATION = AuthenticationInfo(
access_token="access_token",
access_token_expires=0,
refresh_token="refresh_token",
refresh_token_expires=0,
user_id="a1b2c3d4e5f6a1b2c3d4e5f6",
email="email@example.com",
)