Skip to content

Commit

Permalink
Allow exact match
Browse files Browse the repository at this point in the history
  • Loading branch information
leonghui committed Mar 12, 2024
1 parent 0dd4409 commit 720a3e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gwr_feed.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ def get_item_listing(query):
filtered_journeys = [
journey
for journey in journeys
if datetime.fromisoformat(journey["departuredatetime"]) > date
if datetime.fromisoformat(journey["departuredatetime"]) >= date
]

if filtered_journeys:
Expand Down

0 comments on commit 720a3e4

Please sign in to comment.