Skip to content

Commit 68018d1

Browse files
GeneAIclaude
authored andcommitted
fix: Add type annotation to fix mypy errors in health_check
Add explicit dict[str, dict[str, Any]] annotation to checks_run variable to allow mixed value types (bool and str) in check result dictionaries. Fixes mypy type errors for v3.7.0 release validation. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <[email protected]>
1 parent 1f6f56d commit 68018d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/empathy_os/workflows/health_check.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ async def _basic_health_check(self, path: str) -> dict:
209209
import subprocess
210210

211211
issues = []
212-
checks_run = {}
212+
checks_run: dict[str, dict[str, Any]] = {}
213213
health_score = 100.0
214214

215215
# Lint check

0 commit comments

Comments
 (0)