Skip to content

Commit

Permalink
Update aihawk_easy_applier.py
Browse files Browse the repository at this point in the history
  • Loading branch information
queukat authored Oct 5, 2024
1 parent 9278161 commit d45f5e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/aihawk_easy_applier.py
Original file line number Diff line number Diff line change
Expand Up @@ -591,7 +591,7 @@ def _handle_upload_fields(self, element: WebElement, job) -> None:
if self.resume_path is not None and os.path.isfile(self.resume_path):
# Check again before uploading based on text detection
resume_filename = os.path.basename(self.resume_path)
if is_resume_already_uploaded(self.driver, resume_filename):
if self.is_resume_already_uploaded(self.driver, resume_filename):
logger.info(
f"Resume '{resume_filename}' is already uploaded based on text detection. Skipping upload.")
resume_uploaded = True
Expand Down

0 comments on commit d45f5e3

Please sign in to comment.