log fix
This commit is contained in:
parent
668135d669
commit
4fea7833fb
@ -145,7 +145,8 @@ class LinkedInJobManager:
|
|||||||
|
|
||||||
|
|
||||||
def write_to_file(self, job, file_name):
|
def write_to_file(self, job, file_name):
|
||||||
pdf_path = Path(job.pdf_path).as_uri()
|
pdf_path = Path(job.pdf_path).resolve()
|
||||||
|
pdf_path = pdf_path.as_uri()
|
||||||
data = {
|
data = {
|
||||||
"company": job.company,
|
"company": job.company,
|
||||||
"job_title": job.title,
|
"job_title": job.title,
|
||||||
|
1
main.py
1
main.py
@ -158,6 +158,7 @@ def create_and_run_bot(email: str, password: str, parameters: dict, openai_api_k
|
|||||||
os.system('cls' if os.name == 'nt' else 'clear')
|
os.system('cls' if os.name == 'nt' else 'clear')
|
||||||
resume_generator_manager.choose_style()
|
resume_generator_manager.choose_style()
|
||||||
os.system('cls' if os.name == 'nt' else 'clear')
|
os.system('cls' if os.name == 'nt' else 'clear')
|
||||||
|
|
||||||
job_application_profile_object = JobApplicationProfile(plain_text_resume)
|
job_application_profile_object = JobApplicationProfile(plain_text_resume)
|
||||||
|
|
||||||
browser = init_browser()
|
browser = init_browser()
|
||||||
|
Loading…
Reference in New Issue
Block a user