Skip to content

Commit 6f8a959

Browse files
committed
suggested changes
Signed-off-by: Stephanie <[email protected]>
1 parent a8cd0ae commit 6f8a959

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/app/endpoints/conversations.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ async def get_conversations_list_endpoint_handler(
160160
"""Handle request to retrieve all conversations for the authenticated user."""
161161
check_configuration_loaded(configuration)
162162

163-
user_id, _, _, _ = auth
163+
user_id = auth[0]
164164

165165
logger.info("Retrieving conversations for user %s", user_id)
166166

@@ -249,7 +249,7 @@ async def get_conversation_endpoint_handler(
249249
},
250250
)
251251

252-
user_id, _, _, _ = auth
252+
user_id = auth[0]
253253

254254
user_conversation = validate_conversation_ownership(
255255
user_id=user_id,
@@ -371,7 +371,7 @@ async def delete_conversation_endpoint_handler(
371371
},
372372
)
373373

374-
user_id, _, _, _ = auth
374+
user_id = auth[0]
375375

376376
user_conversation = validate_conversation_ownership(
377377
user_id=user_id,

0 commit comments

Comments
 (0)