Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmueller committed Nov 26, 2024
1 parent 815eac2 commit 0ccd792
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 @@ -85,7 +85,7 @@ def get_all_job_methods_in_order(cls, ckanext: str):
for ii in range(len(job_dict)):
for key in list(job_dict.keys()):
job = job_dict[key]
if set(job.depends_on) < set(job_dict_ordered.keys()):
if set(job.depends_on) <= set(job_dict_ordered.keys()):
# All jobs this job depends on are in the ordered list
job_dict_ordered[key] = job
job_dict.pop(key)
Expand Down

0 comments on commit 0ccd792

Please sign in to comment.