-
Notifications
You must be signed in to change notification settings - Fork 268
Open
Description
Problem
While the codebase uses type hints extensively, type checking is not enforced strictly:
- Pytype configured with
keep_going = true(ignores errors and continues) - Active TODO for pytype bug in
entity_agent.py:30:# TODO: b/313715068 - remove disable once pytype bug is fixed. # pytype: disable=override-error
- No mypy or strict type checking in CI pipeline
- Multiple # type: ignore pragmas scattered across codebase
- Type coverage not tracked or enforced for new code
Current Configuration
pyproject.toml
[tool.pytype]
keep_going = true # ← Continues past errors
This means type errors exist but are silently ignored.
i can work on it too
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels