diff --git a/InvenTree/common/notifications.py b/InvenTree/common/notifications.py index 3d0be2be66..865e2ff65d 100644 --- a/InvenTree/common/notifications.py +++ b/InvenTree/common/notifications.py @@ -32,7 +32,7 @@ class NotificationMethod: self.recipiends = self.get_recipiends() def get_recipiends(self): - return False + raise NotImplementedError('The `get_recipiends` method must be implemented!') def cleanup(self): return True