From 6e9a280864bd9ce2991edb28e3e38c80c0053a36 Mon Sep 17 00:00:00 2001 From: Thomas Oettli Date: Mon, 10 Jan 2022 17:09:46 +0100 Subject: [PATCH] fix default value for embed_imgs --- pyquarantine/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyquarantine/config.py b/pyquarantine/config.py index 5376e3d..033534c 100644 --- a/pyquarantine/config.py +++ b/pyquarantine/config.py @@ -228,7 +228,7 @@ class NotifyConfig(BaseConfig): "embed_imgs": { "type": "array", "items": {"type": "string"}, - "default": True}}}} + "default": []}}}} class QuarantineConfig(BaseConfig):