Skip to content

Commit 9b1fc48

Browse files
committed
pyright ignore
Signed-off-by: Claudio Spiess <[email protected]>
1 parent 6cac091 commit 9b1fc48

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/optimizer/process_fever.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -233,9 +233,9 @@ def evidence_mapper_sentence(evidences: list[tuple[str, int]]):
233233

234234
test_df = df[
235235
(df.index.isin(bigbench.index)) & (df["evidence_sentence_count"] > 0)
236-
].drop(
236+
].drop( # pyright: ignore[reportAttributeAccessIssue]
237237
columns=["verifiable", "claim_in_bigbench", "evidence"]
238-
) # pyright: ignore[reportAttributeAccessIssue]
238+
)
239239
test_df["unique_evidence"] = test_df[
240240
"unique_evidence"
241241
].map( # pyright: ignore[reportAttributeAccessIssue]

0 commit comments

Comments
 (0)