Skip to content

Commit 1b92b79

Browse files
TexasCodingclaude
andcommitted
fix: remove unused type: ignore comment to fix CI linting
- Removed unnecessary type: ignore[unreachable] comment on line 453 - This fixes the mypy CI failure: 'Unused type: ignore comment' - All tests still pass, mypy runs clean locally Co-Authored-By: Claude <[email protected]>
1 parent e6dfa4d commit 1b92b79

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/project_x_py/statistics/health.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -450,7 +450,7 @@ async def _score_performance(self, stats: ComprehensiveStats) -> float:
450450
avg_response_time = 0.0
451451
if "suite" in stats:
452452
avg_response_time = stats["suite"].get("avg_response_time_ms", 0.0)
453-
elif "performance" in stats and stats["performance"] is not None: # type: ignore[unreachable]
453+
elif "performance" in stats and stats["performance"] is not None:
454454
avg_response_time = (
455455
stats["performance"].get("avg_response_time", 0.0) or 0.0
456456
)

0 commit comments

Comments
 (0)