Skip to content

Commit 02f96e7

Browse files
committed
mypy
1 parent 6795a5c commit 02f96e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

codeflash/result/critic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ def quantity_of_tests_critic(candidate_result: OptimizedCandidateResult | Origin
106106
if pass_count >= MIN_TESTCASE_PASSED_THRESHOLD:
107107
return True
108108
# If one or more tests passed, check if least one of them was a successful REPLAY_TEST
109-
return bool(pass_count >= 1 and report[models.TestType.REPLAY_TEST]["passed"] >= 1)
109+
return bool(pass_count >= 1 and report[models.TestType.REPLAY_TEST]["passed"] >= 1) # type: ignore # noqa: PGH003
110110

111111

112112
def coverage_critic(original_code_coverage: CoverageData | None, test_framework: str) -> bool:

0 commit comments

Comments
 (0)