File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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 ,
You can’t perform that action at this time.
0 commit comments