Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dustalov committed Aug 24, 2024
1 parent ac035cd commit 3993ce6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/evalica/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
def read_csv(f: IO[str]) -> tuple[list[str], list[str], list[Winner]]:
df_input = pd.read_csv(f, dtype=str)

df_input["winner"] = df_input["winner"].lower().map(WINNERS)
df_input["winner"] = df_input["winner"].str.lower().map(WINNERS)
df_input = df_input[~df_input["winner"].isna()]

xs = df_input["left"].tolist()
Expand Down

0 comments on commit 3993ce6

Please sign in to comment.