7 lines
118 B
Python
7 lines
118 B
Python
|
"""Constants for the Sun integration."""
|
||
|
from typing import Final
|
||
|
|
||
|
DOMAIN: Final = "sun"
|
||
|
|
||
|
DEFAULT_NAME: Final = "Sun"
|