Skip to content

Commit

Permalink
fix evaluator minor bug
Browse files Browse the repository at this point in the history
  • Loading branch information
夏寒 committed Apr 1, 2023
1 parent d17c3e4 commit 950515a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/evaluation/evaluator.py
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ def _resolve(s):
if len(s) == 2:
return s[0], s[1]
elif len(s) == 3:
return '%s,%s'%(s[0],s[1]), s[2]
return '%s,%s'%(s[0],s[2]), s[1]
else:
return None
def update(self, last):
Expand Down

0 comments on commit 950515a

Please sign in to comment.