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
parent
e4bd1263bc
commit
9046aad9c5
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue