diff --git a/src/routes/job_postings.py b/src/routes/job_postings.py index 7a01b7e..e329cb3 100644 --- a/src/routes/job_postings.py +++ b/src/routes/job_postings.py @@ -22,12 +22,12 @@ async def get_job_postings(search_term: str, source: PostingSource = PostingSour match source: case PostingSource.ALL: logger.warning( - "Only Duunitori and Tyomarkkinatori are implemented at the moment." + "LinkedIn is not implemented at the moment. Only Duunitori and Tyomarkkinatori are implemented." ) postings = await duunitori(search_term) postings.extend(await tyomarkkinatori(search_term)) case PostingSource.LINKEDIN: - logger.error(f"Job postings from {source.value} Not implemented yet") + logger.error(f"Job postings from {source.value} are not implemented yet") raise NotImplementedException() case PostingSource.DUUNITORI: postings = await duunitori(search_term)