Theory of Mind (ToM) blocks and simulate frame#33
Merged
Conversation
- Remove unnecessary f-string prefix in mind.py recovery message - Remove forward reference quotes from type annotations (PEP 563) - Break long lines to comply with 100-char limit - Fix import sorting in test_mind.py - Add type: ignore for rank_bm25 untyped library Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
The CI ran mypy with --ignore-missing-imports which suppressed the rank_bm25 error before the inline type: ignore could fire. With strict = true (warn_unused_ignores), the now-unused comment became an error itself. - Add [[tool.mypy.overrides]] for rank_bm25 in pyproject.toml — the correct place to declare a third-party stub exception - Remove the inline # type: ignore comment from retrieval.py - Drop --ignore-missing-imports from CI so both environments use pyproject.toml as the single source of truth Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2 tasks
emson
added a commit
that referenced
this pull request
Apr 28, 2026
Version the ToM/simulate work merged in #33. Also documents the git pull.rebase workflow in CLAUDE.md to prevent divergent-branch confusion on shared feature branches. Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Test plan
uv run pytest tests/test_mind.py -vuv run ruff check src/ tests/uv run mypy src/🤖 Generated with Claude Code