ruff format

This commit is contained in:
DESKTOP-RTLN3BA\$punk 2025-08-12 15:33:17 -07:00
parent 5aa52375c3
commit 54374bd7be
4 changed files with 9 additions and 11 deletions

View file

@ -217,9 +217,7 @@ async def index_github_repos(
# Chunk the content
try:
chunks_data = [
await create_document_chunks(file_content)
][0]
chunks_data = [await create_document_chunks(file_content)][0]
# Use code chunker if available, otherwise regular chunker
if hasattr(config, "code_chunker_instance"):