From 00729a87ff92d11b1ef9a50132115bcad70845ab Mon Sep 17 00:00:00 2001 From: Matthias Date: Thu, 25 Jul 2024 20:42:31 +0200 Subject: [PATCH] chore: remove validation for deprecated settings --- freqtrade/configuration/config_schema.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/freqtrade/configuration/config_schema.py b/freqtrade/configuration/config_schema.py index c4d7d9d48..2dfb4159b 100644 --- a/freqtrade/configuration/config_schema.py +++ b/freqtrade/configuration/config_schema.py @@ -573,15 +573,6 @@ CONF_SCHEMA = { "retries": {"type": "integer", "minimum": 0}, "retry_delay": {"type": "number", "minimum": 0}, **__MESSAGE_TYPE_DICT, - # **{x: {'type': 'object'} for x in RPCMessageType}, - # Below -> Deprecated - "webhookentry": {"type": "object"}, - "webhookentrycancel": {"type": "object"}, - "webhookentryfill": {"type": "object"}, - "webhookexit": {"type": "object"}, - "webhookexitcancel": {"type": "object"}, - "webhookexitfill": {"type": "object"}, - "webhookstatus": {"type": "object"}, }, }, "discord": {