Skip to content

Commit

Permalink
Try to fix CI linting
Browse files Browse the repository at this point in the history
  • Loading branch information
bebatut committed Aug 1, 2024
1 parent 5cd4039 commit 101891e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bin/extract_galaxy_workflows.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,8 @@ 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"]}"
link = wf["data"]["links"]["self"]
self.link = f"https://workflowhub.eu{ link }"
self.name = wf["data"]["attributes"]["title"]
self.tags = wf["data"]["attributes"]["tags"]
self.create_time = shared.format_date(wf["data"]["attributes"]["created_at"])
Expand Down

0 comments on commit 101891e

Please sign in to comment.