Skip to content

Commit 0760c85

Browse files
author
Dylan Huang
committed
remove the pyright decorators
1 parent 247ec0a commit 0760c85

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

eval_protocol/quickstart/llm_judge_braintrust.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
adapter = create_braintrust_adapter()
1717

1818

19-
@pytest.mark.skipif(os.environ.get("CI") == "true", reason="Skip in CI") # pyright: ignore[reportAttributeAccessIssue]
20-
@pytest.mark.asyncio # pyright: ignore[reportAttributeAccessIssue]
19+
@pytest.mark.skipif(os.environ.get("CI") == "true", reason="Skip in CI")
20+
@pytest.mark.asyncio
2121
@evaluation_test(
2222
input_rows=[
2323
adapter.get_evaluation_rows(

eval_protocol/quickstart/llm_judge_langfuse.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
adapter = create_langfuse_adapter()
1919

2020

21-
@pytest.mark.skipif(os.environ.get("CI") == "true", reason="Skip in CI") # pyright: ignore[reportAttributeAccessIssue]
22-
@pytest.mark.asyncio # pyright: ignore[reportAttributeAccessIssue]
21+
@pytest.mark.skipif(os.environ.get("CI") == "true", reason="Skip in CI")
22+
@pytest.mark.asyncio
2323
@evaluation_test(
2424
input_rows=[
2525
adapter.get_evaluation_rows(

eval_protocol/quickstart/llm_judge_langsmith.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ def fetch_langsmith_traces_as_evaluation_rows(
5656
return []
5757

5858

59-
@pytest.mark.skipif(os.environ.get("CI") == "true", reason="Skip in CI") # pyright: ignore[reportAttributeAccessIssue]
60-
@pytest.mark.asyncio # pyright: ignore[reportAttributeAccessIssue]
59+
@pytest.mark.skipif(os.environ.get("CI") == "true", reason="Skip in CI")
60+
@pytest.mark.asyncio
6161
@evaluation_test(
6262
input_rows=[fetch_langsmith_traces_as_evaluation_rows()],
6363
completion_params=[

0 commit comments

Comments
 (0)