Untitled

 avatar
unknown
plain_text
a year ago
327 B
5
Indexable
self, jobs: List[Dict], filter_criteria: Dict
    ) -> List[dict]:
        filtered_jobs = list()

        for job in jobs:
            if (
                job["industry"] == filter_criteria["industry"]
                and job["job_type"] == filter_criteria["job_type"]
            ):
                filtered_jobs.append(job)
Editor is loading...
Leave a Comment