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've recently started using this in a project of mine and while parsing google calendar event recurrence rules I noticed it can't handle FREQ=YEARLY. For example:
@KristianTashkov I had some similar issues, so I went digging in what I assume are unit tests in test.py. In your case, line 481 indicates that a 'yearly' frequency rule must also include a 'BYMONTHDAY or BYDAY or BYMONTH', otherwise it appears invalid. Hope this is helpful.
thanks @neilmdixit, I saw similar but it doesn't make sense in terms of how the library handles text or in general what is a correct recurrent rule. For my use case I just wrote myself a working implementation of the conversation without using the library.
I've recently started using this in a project of mine and while parsing google calendar event recurrence rules I noticed it can't handle
FREQ=YEARLY
. For example:Thanks!
The text was updated successfully, but these errors were encountered: