From e3a30d5f2bab00d545a13c2af6266ddf132a4f4d Mon Sep 17 00:00:00 2001 From: Christoph Stahl Date: Tue, 7 Nov 2023 23:30:56 +0100 Subject: [PATCH] Add secret to default configs --- syng/client.py | 1 + 1 file changed, 1 insertion(+) diff --git a/syng/client.py b/syng/client.py index de8143b..15310f6 100644 --- a/syng/client.py +++ b/syng/client.py @@ -66,6 +66,7 @@ currentLock: asyncio.Semaphore = asyncio.Semaphore(0) def default_config() -> dict[str, Optional[int | str]]: return { "preview_duration": 3, + "secret": None, "last_song": None, "waiting_room_policy": None, }