Sort constants in forked_daapd (#78455)

This commit is contained in:
uvjustin
2022-09-14 19:24:51 +08:00
committed by GitHub
parent efb482fb1d
commit ad25a966a8

View File

@@ -1,6 +1,7 @@
"""Const for forked-daapd.""" """Const for forked-daapd."""
from homeassistant.components.media_player import MediaPlayerEntityFeature from homeassistant.components.media_player import MediaPlayerEntityFeature
CALLBACK_TIMEOUT = 8 # max time between command and callback from forked-daapd server
CAN_PLAY_TYPE = { CAN_PLAY_TYPE = {
"audio/mp4", "audio/mp4",
"audio/aac", "audio/aac",
@@ -11,8 +12,6 @@ CAN_PLAY_TYPE = {
"audio/aiff", "audio/aiff",
"audio/wav", "audio/wav",
} }
CALLBACK_TIMEOUT = 8 # max time between command and callback from forked-daapd server
CONF_LIBRESPOT_JAVA_PORT = "librespot_java_port" CONF_LIBRESPOT_JAVA_PORT = "librespot_java_port"
CONF_MAX_PLAYLISTS = "max_playlists" CONF_MAX_PLAYLISTS = "max_playlists"
CONF_TTS_PAUSE_TIME = "tts_pause_time" CONF_TTS_PAUSE_TIME = "tts_pause_time"