Skip to content

Commit e3ecd76

Browse files
authored
chore: Update black dep to v26 (#188)
1 parent 6bc1e6c commit e3ecd76

3 files changed

Lines changed: 3 additions & 7 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Changelog = "https://github.com/googleapis/llama-index-cloud-sql-pg-python/blob/
3838

3939
[project.optional-dependencies]
4040
test = [
41-
"black[jupyter]==25.12.0",
41+
"black[jupyter]==26.1.0",
4242
"isort==7.0.0",
4343
"mypy==1.19.1",
4444
"pytest-asyncio==1.3.0",

samples/llama_index_doc_store.ipynb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,6 @@
396396
"source": [
397397
"from llama_index_cloud_sql_pg import PostgresIndexStore\n",
398398
"\n",
399-
"\n",
400399
"INDEX_TABLE_NAME = \"index_store\"\n",
401400
"await engine.ainit_index_store_table(\n",
402401
" table_name=INDEX_TABLE_NAME,\n",

samples/llama_index_quick_start.ipynb

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -486,13 +486,11 @@
486486
"netflix_data = \"netflix_titles.csv\"\n",
487487
"\n",
488488
"df = pd.read_csv(netflix_data)\n",
489-
"insert_data_cmd = sqlalchemy.text(\n",
490-
" \"\"\"\n",
489+
"insert_data_cmd = sqlalchemy.text(\"\"\"\n",
491490
" INSERT INTO netflix_titles VALUES (:show_id, :type, :title, :director,\n",
492491
" :cast, :country, :date_added, :release_year, :rating,\n",
493492
" :duration, :listed_in, :description)\n",
494-
" \"\"\"\n",
495-
")\n",
493+
" \"\"\")\n",
496494
"\n",
497495
"parameter_map = [\n",
498496
" {\n",
@@ -615,7 +613,6 @@
615613
"source": [
616614
"from llama_index_cloud_sql_pg import PostgresReader\n",
617615
"\n",
618-
"\n",
619616
"table_name = \"netflix_titles\"\n",
620617
"content_columns = [\"title\", \"director\", \"cast\", \"description\"]\n",
621618
"metadata_columns = [\n",

0 commit comments

Comments
 (0)