Skip to content

Commit

Permalink
fix colon bug
Browse files Browse the repository at this point in the history
  • Loading branch information
landoskape committed Apr 17, 2024
1 parent 8533150 commit 4e9ed50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dominoes/datasets/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ def reward_function(self, choices, batch, **kwargs):
if self.task == "sequencer":
return self._measurereward_sequencer(choices, batch, **kwargs)
elif self.task == "sorting":
return self._measurereward_sorter(choices, batch, **kwargs):
return self._measurereward_sorter(choices, batch, **kwargs)
else:
raise ValueError(f"task {self.task} not recognized")

Expand Down

0 comments on commit 4e9ed50

Please sign in to comment.