From 5ab6a42e9b65375469c340a2cb2f1d163a305ee8 Mon Sep 17 00:00:00 2001 From: John Chilton Date: Fri, 17 May 2024 13:24:01 -0400 Subject: [PATCH] As pointed out by David - doc is optional in plugin, should be in the schema. --- lib/galaxy/schema/remote_files.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/galaxy/schema/remote_files.py b/lib/galaxy/schema/remote_files.py index b4cec1860c67..474d522544be 100644 --- a/lib/galaxy/schema/remote_files.py +++ b/lib/galaxy/schema/remote_files.py @@ -54,8 +54,8 @@ class FilesSourcePlugin(Model): description="The display label for this plugin.", examples=["Library Import Directory"], ) - doc: str = Field( - ..., + doc: Optional[str] = Field( + None, title="Documentation", description="Documentation or extended description for this plugin.", examples=["Galaxy's library import directory"],