From 1908d661a8512de86be64e4f7bb6a027cf63b64d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?B=C3=A9r=C3=A9nice=20Batut?= Date: Thu, 1 Aug 2024 17:44:53 +0200 Subject: [PATCH] Try to fix CI linting --- bin/extract_galaxy_workflows.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/extract_galaxy_workflows.py b/bin/extract_galaxy_workflows.py index eec03b4c..044ded55 100644 --- a/bin/extract_galaxy_workflows.py +++ b/bin/extract_galaxy_workflows.py @@ -55,7 +55,7 @@ def init_from_search(self, wf: dict, source: str, tools: dict) -> None: self.source = source if self.source == "WorkflowHub": self.id = wf["data"]["id"] - self.link = f"https://workflowhub.eu{wf["data"]["links"]["self"]}" + self.link = f"https://workflowhub.eu{ wf["data"]["links"]["self"] }" self.name = wf["data"]["attributes"]["title"] self.tags = wf["data"]["attributes"]["tags"] self.create_time = shared.format_date(wf["data"]["attributes"]["created_at"])