Skip to content

Commit

Permalink
fix none type return issue
Browse files Browse the repository at this point in the history
  • Loading branch information
naik-aakash committed Jan 21, 2025
1 parent 5f6e3e3 commit 224630e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/autoplex/auto/rss/flows.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit 224630e

Please sign in to comment.