Skip to content

Commit

Permalink
convert tag to int; remove scoring_rule argument
Browse files Browse the repository at this point in the history
  • Loading branch information
BeritJanssen committed Dec 4, 2023
1 parent 9949c3e commit 4e49cbf
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions backend/experiment/rules/kuiper_2020.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def plan_sections(self, session):
old_sections_2 = \
[session.
section_from_any_song(
{'group': s.group, 'tag': 3 - s.tag}
{'group': s.group, 'tag': 3 - int(s.tag)}
)
for s in old_sections_1]
free_sections = [session.section_from_song(s) for s in free_songs]
Expand Down Expand Up @@ -151,7 +151,6 @@ def next_heard_before_action(self, session):
},
question=_("Did you hear this song in previous rounds?"),
result_id=result_pk,
scoring_rule='REACTION_TIME',
style=STYLE_BOOLEAN_NEGATIVE_FIRST,
submits=True)])
config = {
Expand Down

0 comments on commit 4e49cbf

Please sign in to comment.