We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 108ca25 commit 95c4a16Copy full SHA for 95c4a16
RELEASE_NOTES.md
@@ -3,3 +3,7 @@
3
## Summary
4
5
* The dispatch-cli application now features fancy colors and formatting!
6
+
7
+## Bug Fixes
8
9
+* Fixed a bug where the dispatch-cli application would crash when reading a Dispatch with frequency YEARLY
src/frequenz/client/dispatch/recurrence.py
@@ -48,6 +48,7 @@ class Frequency(IntEnum):
48
Frequency.DAILY: rrule.DAILY,
49
Frequency.WEEKLY: rrule.WEEKLY,
50
Frequency.MONTHLY: rrule.MONTHLY,
51
+ Frequency.YEARLY: rrule.YEARLY,
52
}
53
"""To map from our Frequency enum to the dateutil library enum."""
54
0 commit comments