format files

This commit is contained in:
maxDorninger
2025-07-01 16:03:17 +02:00
parent 27c3c58cd9
commit efc3846860
18 changed files with 118 additions and 121 deletions

View File

@@ -1,6 +1,7 @@
import abc
from media_manager.notification.schemas import MessageNotification
class AbstractNotificationServiceProvider(abc.ABC):
@abc.abstractmethod
def send_notification(self, message: MessageNotification) -> bool:
@@ -11,4 +12,3 @@ class AbstractNotificationServiceProvider(abc.ABC):
:return: True if the notification was sent successfully, False otherwise.
"""
pass