Commit 12a53498

David Meadows <dmeadows@stainless.com>
2025-05-09 23:15:26
fix(internal): fix linting due to broken __test__ annotation
1 parent 21209ab
Changed files (1)
src
src/openai/types/eval_create_params.py
@@ -140,19 +140,16 @@ class TestingCriterionLabelModel(TypedDict, total=False):
 
 
 class TestingCriterionTextSimilarity(TextSimilarityGraderParam, total=False):
-    __test__ = False
     pass_threshold: Required[float]
     """The threshold for the score."""
 
 
 class TestingCriterionPython(PythonGraderParam, total=False):
-    __test__ = False
     pass_threshold: float
     """The threshold for the score."""
 
 
 class TestingCriterionScoreModel(ScoreModelGraderParam, total=False):
-    __test__ = False
     pass_threshold: float
     """The threshold for the score."""