Skip to content

Commit

Permalink
typing fix
Browse files Browse the repository at this point in the history
  • Loading branch information
bernt-matthias committed Jul 30, 2024
1 parent 595598d commit daa25ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion planemo/linters/conda_requirements.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def lint(cls, tool_source: "ToolSource", lint_ctx: "LintContext"):
lint_ctx.warn(message, linter=cls.name(), node=requirements_node)


def _requirements_conda_targets(tool_source: "ToolSource") -> Generator["CondaTarget"]:
def _requirements_conda_targets(tool_source: "ToolSource") -> Generator["CondaTarget", None, None]:
requirements, *_ = tool_source.parse_requirements_and_containers()
for requirement in requirements:
conda_target = requirement_to_conda_targets(requirement)
Expand Down

0 comments on commit daa25ec

Please sign in to comment.