Merge remote-tracking branch 'origin/main'

pull/12/head
zacharyhampton 2023-07-10 18:04:50 -05:00
commit cc48218747
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ class IndeedScraper(Scraper):
if response.status_code != status.HTTP_200_OK:
raise HTTPException(
status_code=status.HTTP_400_BAD_REQUEST,
detail=f"Response returned {response.status_code} {response.reason}",
detail=f"Response returned {response.status_code}",
)
soup = BeautifulSoup(response.content, "html.parser")