Is the CaselessDict class necessary? #534
chrisconlan
started this conversation in
Ideas
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Seems like needless bloat.
Why not just run
{k.upper(): v for k, v in the_calendar.items()}
on theCalendar.to_ical()
method before rendering?I think the library should expose the logic of the iCal spec in as little code as possible.
Beta Was this translation helpful? Give feedback.
All reactions