Skip to content

Commit

Permalink
Try to remove 'unused' mypy warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
ml-evs authored and gpetretto committed Mar 8, 2024
1 parent e1f5a6c commit b4b9e44
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/jobflow_remote/cli/job.py
Original file line number Diff line number Diff line change
Expand Up @@ -706,10 +706,10 @@ def resources(
Set the resources for the selected Jobs. Only READY or WAITING Jobs.
"""

resources = str_to_dict(resources_value) # type: ignore
resources = str_to_dict(resources_value)

if qresources:
resources = QResources(**resources) # type: ignore[assignment]
resources = QResources(**resources)

jc = get_job_controller()
execute_multi_jobs_cmd(
Expand Down

0 comments on commit b4b9e44

Please sign in to comment.