We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d1b379b commit 52d6efcCopy full SHA for 52d6efc
openedx_events/data.py
@@ -42,7 +42,9 @@ class EventsMetadata:
42
time (datetime): (optional) timestamp when the event was sent with
43
UTC timezone. Defaults to current time in UTC. See OEP-41 for
44
details.
45
- sourcelib (str): Open edX Events library version.
+ sourcelib (tuple of ints): Open edX Events library version. A tuple was
46
+ selected so that version comparisons don't have to worry about
47
+ lexical ordering of strings (e.g. '0.9.0' vs. '0.10.0').
48
"""
49
50
id = attr.ib(type=UUID, init=False)
0 commit comments