Skip to content

Commit

Permalink
Feature: support for if output.csv doesnt exist
Browse files Browse the repository at this point in the history
  • Loading branch information
krapes committed Jul 12, 2020
1 parent fb15308 commit 8321477
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion easyapplybot.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def __init__(self, username, password, cover_letter_loctn=None, filename='output
print("current directory is : " + dirpath)

self.cover_letter_loctn = cover_letter_loctn
self.appliedJobIDs = self.get_appliedIDs(filename)#if self.get_appliedIDs(filename) != None else []
self.appliedJobIDs = self.get_appliedIDs(filename) if self.get_appliedIDs(filename) != None else []
self.filename = filename
self.options = self.browser_options()
self.browser = driver
Expand Down

0 comments on commit 8321477

Please sign in to comment.