Skip to content

Commit 5a0e20f

Browse files
fix: param type
1 parent 79148cb commit 5a0e20f

File tree

1 file changed

+3
-3
lines changed
  • services/web/server/src/simcore_service_webserver/conversations

1 file changed

+3
-3
lines changed

services/web/server/src/simcore_service_webserver/conversations/_socketio.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ async def _send_message_to_recipients(app, recipients, notification_message):
5252
async def notify_conversation_message_created(
5353
app: web.Application,
5454
*,
55-
recipients: list[UserID],
55+
recipients: set[UserID],
5656
project_id: ProjectID,
5757
conversation_message: ConversationMessageGetDB,
5858
) -> None:
@@ -72,7 +72,7 @@ async def notify_conversation_message_created(
7272
async def notify_conversation_message_updated(
7373
app: web.Application,
7474
*,
75-
recipients: list[UserID],
75+
recipients: set[UserID],
7676
project_id: ProjectID,
7777
conversation_message: ConversationMessageGetDB,
7878
) -> None:
@@ -93,7 +93,7 @@ async def notify_conversation_message_updated(
9393
async def notify_conversation_message_deleted(
9494
app: web.Application,
9595
*,
96-
recipients: list[UserID],
96+
recipients: set[UserID],
9797
project_id: ProjectID,
9898
conversation_id: ConversationID,
9999
message_id: ConversationMessageID,

0 commit comments

Comments
 (0)