From 224630e6d5052fc5332ff1b3364c7254028e5ddd Mon Sep 17 00:00:00 2001 From: naik-aakash Date: Tue, 21 Jan 2025 16:15:58 +0100 Subject: [PATCH] fix none type return issue --- src/autoplex/auto/rss/flows.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/autoplex/auto/rss/flows.py b/src/autoplex/auto/rss/flows.py index b9d355ae..6240daa4 100644 --- a/src/autoplex/auto/rss/flows.py +++ b/src/autoplex/auto/rss/flows.py @@ -235,7 +235,7 @@ def make(self, **kwargs): """ default_config = self.rss_config.model_copy(deep=True) if kwargs: - default_config = default_config.update_parameters(kwargs) + default_config.update_parameters(kwargs) config_params = default_config.model_dump(by_alias=True, exclude_none=True)