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
- Replace wildcard imports (`from .utils import *`) with explicit named
imports in page_index.py, page_index_md.py, __init__.py, and
run_pageindex.py, eliminating 79 F405 and 5 F403 violations
- Add __all__ to __init__.py to properly declare the public re-exports
- Fix import order in utils.py (E402): move yaml/Path/config imports
before load_dotenv() call; sort stdlib imports alphabetically
- Add missing `import re` in utils.py (F821) used by regex helpers
- Replace bare `except:` with `except Exception:` in utils.py and
`except ImportError:` in page_index_md.py (E722)
- Remove unused `ModelSettings` import in examples/agentic_vectorless_rag_demo.py (F401)
- Move `from pprint import pprint` before function definition in
cookbook/agentic_retrieval.ipynb cell to fix E402 in notebooks
- Auto-fix 22 additional errors: F541 (f-strings), E401 (multiple
imports per line), F811 (redefined imports), F401 (unused imports)
No breaking changes: all public APIs preserved; __all__ exposes the
same symbols previously accessible via star import.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
0 commit comments