From e9192b246bcd1375146cb002139e9f7283443906 Mon Sep 17 00:00:00 2001 From: wh201906 Date: Mon, 29 Sep 2025 01:12:25 +0800 Subject: [PATCH] Fix example code of Python integration --- docs/integrations/language-clients/python/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/integrations/language-clients/python/index.md b/docs/integrations/language-clients/python/index.md index 28314d73cb9..1f346bbf269 100644 --- a/docs/integrations/language-clients/python/index.md +++ b/docs/integrations/language-clients/python/index.md @@ -967,7 +967,7 @@ with its intended purpose of providing a reusable object for repeated inserts of ```python test_data = [[1, 'v1', 'v2'], [2, 'v3', 'v4']] -ic = test_client.create_insert_context(table='test_table', data='test_data') +ic = test_client.create_insert_context(table='test_table', data=test_data) client.insert(context=ic) assert client.command('SELECT count() FROM test_table') == 2 new_data = [[3, 'v5', 'v6'], [4, 'v7', 'v8']]