Fixed minor typo in python library getting started documentation

If you follow the code example line by line, you end up using InfluxDBClient which has not been imported yet.  The complete example clearly show us referencing it through the module, so I edited the step-by-step instructions to do the same.
pull/1533/head
Mark Nguyen 2020-09-23 00:00:11 -07:00 committed by GitHub
parent e4bd1263bc
commit 9046aad9c5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ We are going to write some data in [line protocol](/influxdb/v2.0/reference/synt
3. Instantiate the client. The `InfluxDBClient` object takes three named parameters: `url`, `org`, and `token`. Pass in the named parameters.
```python
client = InfluxDBClient(
client = influxdb_client.InfluxDBClient(
url=url,
token=token,
org=org