Skip to content

Commit

Permalink
chore: Set feed parse time interval to 6 hour
Browse files Browse the repository at this point in the history
  • Loading branch information
gogumaC committed Dec 6, 2023
1 parent 2eaf61e commit a35f659
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def find_new_posting():

feed = feedparser.parse(FEED_URL)
current_time = datetime.now()
one_hour_ago = current_time - timedelta(hour=1)
one_hour_ago = current_time - timedelta(hour=6)

new_postings = []

Expand Down

0 comments on commit a35f659

Please sign in to comment.