Skip to content

Commit

Permalink
return list
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmueller committed Nov 26, 2024
1 parent 0ccd792 commit bd04eaf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dcor_shared/rqjob.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def get_all_job_methods_in_order(cls, ckanext: str):
f"The following jobs have unmet dependencies and will not "
f"be returned: {list(job_dict.keys())}")

return job_dict_ordered.values()
return list(job_dict_ordered.values())


class rqjob_register:
Expand Down

0 comments on commit bd04eaf

Please sign in to comment.