gzdaniel commited on
Commit
2c0af9b
·
1 Parent(s): db526eb

Fix linting

Browse files
Files changed (1) hide show
  1. lightrag/kg/postgres_impl.py +3 -1
lightrag/kg/postgres_impl.py CHANGED
@@ -226,7 +226,9 @@ class PostgreSQLDB:
226
  return
227
 
228
  # 4. Perform the migration
229
- logger.info("Starting data migration from LIGHTRAG_DOC_CHUNKS to LIGHTRAG_VDB_CHUNKS...")
 
 
230
  migration_sql = """
231
  INSERT INTO LIGHTRAG_VDB_CHUNKS (
232
  id, workspace, full_doc_id, chunk_order_index, tokens, content,
 
226
  return
227
 
228
  # 4. Perform the migration
229
+ logger.info(
230
+ "Starting data migration from LIGHTRAG_DOC_CHUNKS to LIGHTRAG_VDB_CHUNKS..."
231
+ )
232
  migration_sql = """
233
  INSERT INTO LIGHTRAG_VDB_CHUNKS (
234
  id, workspace, full_doc_id, chunk_order_index, tokens, content,