Skip to content

Commit 10b4906

Browse files
committed
Change questions for 2025
1 parent db9d021 commit 10b4906

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/misc.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@
22

33

44
class SpeakerQuestion:
5-
affiliation = "Company / Organization / Educational Institution"
5+
affiliation = "Company/Organization/Educational Institution"
66
homepage = "Social (Homepage)"
77
twitter = "Social (X/Twitter)"
88
mastodon = "Social (Mastodon)"
99
linkedin = "Social (LinkedIn)"
10-
gitx = "Social (Github/Gitlab)"
10+
gitx = "Social (GitHub/GitLab)"
1111

1212

1313
class SubmissionQuestion:
1414
outline = "Outline"
15-
tweet = "Abstract as a tweet / toot"
16-
delivery = "My presentation can be delivered"
15+
tweet = "Abstract as a short post (150 character max)"
16+
delivery = "My presentation can be delivered in-person"
1717
level = "Expected audience expertise"
1818

1919

src/models/europython.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ def extract_answers(cls, values) -> dict:
168168
values["tweet"] = answer.answer_text
169169

170170
if answer.question_text == SubmissionQuestion.delivery:
171-
if "in-person" in answer.answer_text:
171+
if "Yes" in answer.answer_text:
172172
values["delivery"] = "in-person"
173173
else:
174174
values["delivery"] = "remote"

0 commit comments

Comments
 (0)