Skip to content

Commit

Permalink
수정
Browse files Browse the repository at this point in the history
  • Loading branch information
5anniversary committed Sep 25, 2023
1 parent 0f24d61 commit f744253
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/notion_working_database.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def main():
start_date = datetime.fromisoformat(start_date_str)
end_date = datetime.fromisoformat(end_date_str)

if start_date.date() < today and end_date.date() > today:
if start_date.date() <= today and end_date.date() >= today:
filtered_pages.append(page)

for page in filtered_pages:
Expand Down

0 comments on commit f744253

Please sign in to comment.