mirror of
https://github.com/home-assistant/core.git
synced 2025-05-04 22:19:17 +00:00

* Overhaul Tile * Adjust coverage * Fix tests * Code review * Code review * Remove unused config flow step * Revert "Remove unused config flow step" This reverts commit cb206e044672deb7f681d2a3ae0be03762854fc0. * Fix tests
9 lines
136 B
Python
9 lines
136 B
Python
"""Define Tile constants."""
|
|
import logging
|
|
|
|
DOMAIN = "tile"
|
|
|
|
DATA_COORDINATOR = "coordinator"
|
|
|
|
LOGGER = logging.getLogger(__package__)
|