mirror of
https://github.com/home-assistant/core.git
synced 2026-02-23 11:26:46 +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 cb206e0446.
* 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__)
|