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 4cfca8a commit 1bb206aCopy full SHA for 1bb206a
src/utils/parse.py
@@ -34,12 +34,12 @@ def publishable_speakers(
34
js = json.load(fd)
35
all_speakers = [PretalxSpeaker.model_validate(s) for s in js]
36
37
- speakers_with_publishable_sessions: list[PretalxSubmission] = []
+ speakers_with_publishable_sessions: list[PretalxSpeaker] = []
38
for speaker in all_speakers:
39
if publishable_sessions := Utils.publishable_sessions_of_speaker(
40
speaker, publishable_sessions_keys
41
):
42
- speaker.submissions = publishable_sessions
+ speaker.submissions = sorted(publishable_sessions)
43
speakers_with_publishable_sessions.append(speaker)
44
45
publishable_speakers_by_code = {
0 commit comments