Skip to content

Commit

Permalink
fix missing config case
Browse files Browse the repository at this point in the history
  • Loading branch information
hugobessa committed Dec 4, 2024
1 parent 1e9dbaa commit 92bb76c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vintasend/services/notification_backends/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class Meta:

def __init__(self, *args, **kwargs):
self.backend_import_str = get_class_path(self)
self.config = kwargs.pop("config")
self.config = kwargs.pop("config", None)
self.backend_kwargs = kwargs

@abstractmethod
Expand Down

0 comments on commit 92bb76c

Please sign in to comment.