From c9c0e6b3dd1100b6fa386db4f5f767307b9afeea Mon Sep 17 00:00:00 2001 From: mvdbeek Date: Thu, 28 Nov 2024 12:53:05 +0100 Subject: [PATCH] Fix gxformat2 to .ga conversion if hide: true specified on output Fixes https://github.com/galaxyproject/galaxy/issues/18995 --- gxformat2/converter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gxformat2/converter.py b/gxformat2/converter.py index e9ad94a..5f1167b 100644 --- a/gxformat2/converter.py +++ b/gxformat2/converter.py @@ -36,7 +36,7 @@ 'hide': { 'action_class': "HideDatasetAction", 'default': False, - 'arguments': lambda x: x, + 'arguments': lambda x: {}, }, 'rename': { 'action_class': 'RenameDatasetAction',