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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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