From c8e6d30d8eb75d411299eedecc0d6320bce994de Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Tue, 2 Dec 2025 10:42:21 -0500 Subject: [PATCH] Fix import error in commentary route MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change `from .. import bible` to `from ..kjv import bible` to match the correct import pattern used throughout the codebase. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- kjvstudy_org/routes/commentary.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kjvstudy_org/routes/commentary.py b/kjvstudy_org/routes/commentary.py index e5230d5..4579627 100644 --- a/kjvstudy_org/routes/commentary.py +++ b/kjvstudy_org/routes/commentary.py @@ -64,8 +64,8 @@ async def commentary_index(request: Request): ] # Get books list for navigation - from ..kjv import get_books - books = get_books() + from ..kjv import bible + books = bible.get_books() return templates.TemplateResponse( "commentary_index.html",