Skip to content

Commit c318e90

Browse files
fix: imports
1 parent 40729d8 commit c318e90

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
from ._notifications import send_notification
2+
3+
__all__: tuple[str, ...] = ("send_notification",)

services/notifications/tests/unit/test_send_email_tasks.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
from faker import Faker
33
from models_library.rpc.notifications import Notification
44
from models_library.rpc.notifications.channels import EmailAddress, EmailChannel
5-
from models_library.rpc.notifications.events._account_events import (
5+
from models_library.rpc.notifications.events import (
66
AccountRequestedEvent,
77
)
88
from servicelib.rabbitmq import RabbitMQRPCClient
9-
from servicelib.rabbitmq.rpc_interfaces.notifications.messages import (
9+
from servicelib.rabbitmq.rpc_interfaces.notifications import (
1010
send_notification,
1111
)
1212

0 commit comments

Comments
 (0)