You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a recurring event. And when I want to list events at a time inside the recurring event, then no event are shown. Given that the date is in-between the start, and end, of the recurring event, I thought it would be listed, correct?
Reproduction code:
fromdatetimeimportUTC, datetime, timedeltafromicaleventsimporticaleventsics=b"""BEGIN:VCALENDARVERSION:2.0BEGIN:VEVENTSUMMARY:Something recurrent (every 2 weeks, on Friday)DTSTART:20250117T153000ZDTEND:20250124T080000ZRRULE:FREQ=WEEKLY;INTERVAL=2;BYDAY=FREND:VEVENTEND:VCALENDAR"""start=datetime(2025, 2, 4, tzinfo=UTC) # From 01-31 to 02-07, it is inside the recurring eventend=start+timedelta(days=1)
events=icalevents.events(string_content=ics, start=start, end=end, tzinfo=UTC)
assertlen(events) ==1
The text was updated successfully, but these errors were encountered:
I have a recurring event. And when I want to list events at a time inside the recurring event, then no event are shown. Given that the date is in-between the start, and end, of the recurring event, I thought it would be listed, correct?
Reproduction code:
The text was updated successfully, but these errors were encountered: