From aa0267ede2c9a3843fd7e69ac6270571f039830a Mon Sep 17 00:00:00 2001 From: dingbo Date: Thu, 2 Jun 2022 19:30:38 +0800 Subject: [PATCH] docs: fix parameter error --- docs-en/05-develop/01-connect/01-python.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs-en/05-develop/01-connect/01-python.md b/docs-en/05-develop/01-connect/01-python.md index 499f7fef37..fb3bb64bf3 100644 --- a/docs-en/05-develop/01-connect/01-python.md +++ b/docs-en/05-develop/01-connect/01-python.md @@ -47,7 +47,7 @@ password = os.environ["TDENGINE_PASSWORD"] conn = taosrest.connect(host=host, port=port, - username="root", - password="taosdata", + username=user, + password=password, token=token) ``` -- GitLab