Skip to content

Commit

Permalink
Add Ignore type check for Mypy error (#341)
Browse files Browse the repository at this point in the history
* add type check ignore to fix mypy error

---------

Co-authored-by: satish gollaprolu <[email protected]>
  • Loading branch information
Satish615 and satish gollaprolu authored Jan 13, 2025
1 parent 2ef90f7 commit 44c51d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fmeval/reporting/eval_output_cells.py
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ def __init__(
if score_name in [FACTUAL_KNOWLEDGE, FACTUAL_KNOWLEDGE_QUASI_EXACT, CLASSIFICATION_ACCURACY_SCORE]
else False
)
cells.append(ScoreTableCell(dataset, score_column_name, binary=is_binary_score))
cells.append(ScoreTableCell(dataset, score_column_name, binary=is_binary_score)) # type: ignore
super().__init__(*cells)


Expand Down

0 comments on commit 44c51d4

Please sign in to comment.