mirror of
https://github.com/home-assistant/core.git
synced 2026-08-29 02:35:05 -05:00
15 lines
291 B
Python
15 lines
291 B
Python
"""Constants for remember_the_milk tests."""
|
|
|
|
import json
|
|
|
|
PROFILE = "myprofile"
|
|
TOKEN = "mytoken"
|
|
JSON_STRING = json.dumps(
|
|
{
|
|
"myprofile": {
|
|
"token": "mytoken",
|
|
"id_map": {"123": {"list_id": "1", "timeseries_id": "2", "task_id": "3"}},
|
|
}
|
|
}
|
|
)
|