mirror of
https://github.com/home-assistant/core.git
synced 2025-04-27 18:57:57 +00:00

* add CONF_STATE_CLASS to const.py * move to `sensor/__init__.py` * move to sensor/const.py * Revert "move to sensor/const.py" This reverts commit 604d0d066bfcb93f1a11e3d7732d430ab6de8d59. * move it to `sensor/const.py` but import it from `sensor/__init__.py` * add Modbus
5 lines
94 B
Python
5 lines
94 B
Python
"""Constants for sensor."""
|
|
from typing import Final
|
|
|
|
CONF_STATE_CLASS: Final = "state_class"
|