From c598c49f62296c0d1bf4209d0362b0fdc0122141 Mon Sep 17 00:00:00 2001 From: Marius van den Beek Date: Tue, 5 Mar 2024 15:52:17 +0100 Subject: [PATCH] Raise NotImplementedError for TS `get_or_create_default_history` --- lib/tool_shed/webapp/buildapp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/tool_shed/webapp/buildapp.py b/lib/tool_shed/webapp/buildapp.py index 49ecfb6fb525..05388285ea2b 100644 --- a/lib/tool_shed/webapp/buildapp.py +++ b/lib/tool_shed/webapp/buildapp.py @@ -38,7 +38,7 @@ def repositories_hostname(self) -> str: def get_or_create_default_history(self): # tool shed has no concept of histories - return None + raise NotImplementedError class CommunityWebApplication(galaxy.webapps.base.webapp.WebApplication):