Skip to content

Commit f46e47d

Browse files
authored
fix(#6921): Wrong variable name for python initialized client. (#6922)
- Fix variable name in InitializeClient to agree with write and query examples. - Reported in Docs-v2
1 parent a9f3ed2 commit f46e47d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/homepageExperience/components/steps/python/InitializeClient.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ token = os.environ.get("INFLUXDB_TOKEN")
2525
org = "${org.name}"
2626
url = "${url}"
2727
28-
write_client = influxdb_client.InfluxDBClient(url=url, token=token, org=org)
28+
client = influxdb_client.InfluxDBClient(url=url, token=token, org=org)
2929
`
3030

3131
return (

0 commit comments

Comments
 (0)