mirror of https://github.com/Bunsly/JobSpy
Merge branch 'main' into multiple_job_types_indeed
commit
ca0912388d
|
@ -124,8 +124,8 @@ class IndeedScraper(Scraper):
|
||||||
if interval in CompensationInterval.__members__:
|
if interval in CompensationInterval.__members__:
|
||||||
compensation = Compensation(
|
compensation = Compensation(
|
||||||
interval=CompensationInterval[interval],
|
interval=CompensationInterval[interval],
|
||||||
min_amount=int(extracted_salary.get("max")),
|
min_amount=int(extracted_salary.get("min")),
|
||||||
max_amount=int(extracted_salary.get("min")),
|
max_amount=int(extracted_salary.get("max")),
|
||||||
currency=currency,
|
currency=currency,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue