From 41c9daf7da3cabaf08f3b61f590085df371f3ab5 Mon Sep 17 00:00:00 2001 From: Nicola Soranzo Date: Mon, 16 Dec 2024 15:00:52 +0000 Subject: [PATCH] Replace deprecated ``example`` parameter of ``fastapi.Path()`` See https://fastapi.tiangolo.com/reference/parameters/#fastapi.Path --- lib/galaxy/webapps/galaxy/services/library_contents.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/galaxy/webapps/galaxy/services/library_contents.py b/lib/galaxy/webapps/galaxy/services/library_contents.py index 971c356f56d3..90694967fbc9 100644 --- a/lib/galaxy/webapps/galaxy/services/library_contents.py +++ b/lib/galaxy/webapps/galaxy/services/library_contents.py @@ -58,7 +58,7 @@ str, Path( title="The encoded ID of a library folder or dataset.", - example="F0123456789ABCDEF", + examples="F0123456789ABCDEF", min_length=16, pattern="F?[0-9a-fA-F]+", ),