mirror of
https://github.com/home-assistant/core.git
synced 2025-11-09 10:59:40 +00:00
9 lines
204 B
Python
9 lines
204 B
Python
"""Utils for Onkyo."""
|
|
|
|
from .const import InputSource, ListeningMode
|
|
|
|
|
|
def get_meaning(param: InputSource | ListeningMode) -> str:
|
|
"""Get param meaning."""
|
|
return " ··· ".join(param.meanings)
|