You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: allow attribute names starting with 'index' in declarations (#1411)
The index detection regex in declare.py matched any line starting with
"index", misclassifying attributes like `index: int` or `index_value`
as index declarations. Tighten the regex to require parentheses,
matching only actual index declarations like `index(col1, col2)`.
Also fix pre-existing mypy errors: add type annotations to
hash_registry.py functions and assert-based narrowing for conditional
config imports in filepath.py, attach.py, and hash_registry.py.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
0 commit comments