Skip to content

Commit

Permalink
fix: labels of job parsing (#219)
Browse files Browse the repository at this point in the history
  • Loading branch information
Abdellahitech authored Jan 29, 2024
1 parent 5c1a405 commit 970fd25
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/hrflow_connectors/connectors/hrflow/warehouse/job.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@
LIST_JOBS_LIMIT = 30

LABEL_TO_JOB_FIELD = dict(
Course="courses",
Task="tasks",
Certification="certifications",
Language="languages",
course="courses",
task="tasks",
certification="certifications",
language="languages",
)
SKILL_LABEL_TO_TYPE = dict(Skill=None, HardSkill="hard", SoftSkill="soft")
SKILL_LABEL_TO_TYPE = dict(Skill=None, skill_hard="hard", skill_soft="soft")


class JobParsingException(Exception):
Expand Down

0 comments on commit 970fd25

Please sign in to comment.