from notifications.strategies.abstract_strategy import Strategy from utils.test_helpers import sync class NotificationsCenter: strategy: Strategy def __init__(self, strategy: Strategy): self.strategy = strategy @sync async def notify(self, params): return await self.strategy.send(params)