Skip to content

Commit 099b9f6

Browse files
feat: remove incorect comments
1 parent 93129b0 commit 099b9f6

File tree

13 files changed

+1
-188
lines changed

13 files changed

+1
-188
lines changed

influxdb_client_3/write_client/__init__.py

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,6 @@
22

33
# flake8: noqa
44

5-
"""
6-
InfluxDB OSS API Service.
7-
8-
The InfluxDB v2 API provides a programmatic interface for all interactions with InfluxDB. Access the InfluxDB API using the `/api/v2/` endpoint. # noqa: E501
9-
10-
OpenAPI spec version: 2.0.0
11-
Generated by: https://openapi-generator.tech
12-
"""
13-
14-
155
from __future__ import absolute_import
166

177
from influxdb_client_3.write_client.client.write_api import WriteApi, WriteOptions

influxdb_client_3/write_client/_sync/api_client.py

Lines changed: 1 addition & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,4 @@
11
# coding: utf-8
2-
"""
3-
InfluxDB OSS API Service.
4-
5-
The InfluxDB v2 API provides a programmatic interface for all interactions with InfluxDB. Access the InfluxDB API using the `/api/v2/` endpoint. # noqa: E501
6-
7-
OpenAPI spec version: 2.0.0
8-
Generated by: https://openapi-generator.tech
9-
"""
102

113
from __future__ import absolute_import
124

@@ -28,17 +20,7 @@
2820

2921

3022
class ApiClient(object):
31-
"""Generic API client for OpenAPI client library Build.
32-
33-
OpenAPI generic API client. This client handles the client-
34-
server communication, and is invariant across implementations. Specifics of
35-
the methods and models for each application are generated from the OpenAPI
36-
templates.
37-
38-
NOTE: This class is auto generated by OpenAPI Generator.
39-
Ref: https://openapi-generator.tech
40-
Do not edit the class manually.
41-
23+
"""
4224
:param configuration: .Configuration object for this client
4325
:param header_name: a header to pass when making calls to the API.
4426
:param header_value: a header value to pass when making calls to

influxdb_client_3/write_client/_sync/rest.py

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,5 @@
11
# coding: utf-8
22

3-
"""
4-
InfluxDB OSS API Service.
5-
6-
The InfluxDB v2 API provides a programmatic interface for all interactions with InfluxDB. Access the InfluxDB API using the `/api/v2/` endpoint. # noqa: E501
7-
8-
OpenAPI spec version: 2.0.0
9-
Generated by: https://openapi-generator.tech
10-
"""
11-
12-
133
from __future__ import absolute_import
144

155
import io
@@ -28,11 +18,6 @@
2818

2919

3020
class RESTResponse(io.IOBase):
31-
"""NOTE: This class is auto generated by OpenAPI Generator.
32-
33-
Ref: https://openapi-generator.tech
34-
Do not edit the class manually.
35-
"""
3621

3722
def __init__(self, resp):
3823
"""Initialize with HTTP response."""
@@ -51,11 +36,6 @@ def getheader(self, name, default=None):
5136

5237

5338
class RESTClientObject(object):
54-
"""NOTE: This class is auto generated by OpenAPI Generator.
55-
56-
Ref: https://openapi-generator.tech
57-
Do not edit the class manually.
58-
"""
5939

6040
def __init__(self, configuration, pools_size=4, maxsize=None, retries=False):
6141
"""Initialize REST client."""

influxdb_client_3/write_client/client/__init__.py

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,5 @@
11
# flake8: noqa
22

3-
"""
4-
InfluxDB OSS API Service.
5-
6-
The InfluxDB v2 API provides a programmatic interface for all interactions with InfluxDB. Access the InfluxDB API using the `/api/v2/` endpoint. # noqa: E501
7-
8-
OpenAPI spec version: 2.0.0
9-
Generated by: https://openapi-generator.tech
10-
"""
11-
12-
133
from __future__ import absolute_import
144

155
# import apis into api package

influxdb_client_3/write_client/client/write/__init__.py

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,5 @@
11
# flake8: noqa
22

3-
"""
4-
InfluxDB OSS API Service.
5-
6-
The InfluxDB v2 API provides a programmatic interface for all interactions with InfluxDB. Access the InfluxDB API using the `/api/v2/` endpoint. # noqa: E501
7-
8-
OpenAPI spec version: 2.0.0
9-
Generated by: https://openapi-generator.tech
10-
"""
11-
12-
133
from __future__ import absolute_import
144

155
# import apis into api package

influxdb_client_3/write_client/configuration.py

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,5 @@
11
# coding: utf-8
22

3-
"""
4-
InfluxDB OSS API Service.
5-
6-
The InfluxDB v2 API provides a programmatic interface for all interactions with InfluxDB. Access the InfluxDB API using the `/api/v2/` endpoint. # noqa: E501
7-
8-
OpenAPI spec version: 2.0.0
9-
Generated by: https://openapi-generator.tech
10-
"""
11-
12-
133
from __future__ import absolute_import
144

155
import copy
@@ -21,11 +11,6 @@
2111

2212

2313
class TypeWithDefault(type):
24-
"""NOTE: This class is auto generated by OpenAPI Generator.
25-
26-
Ref: https://openapi-generator.tech
27-
Do not edit the class manually.
28-
"""
2914

3015
def __init__(cls, name, bases, dct):
3116
"""Initialize with defaults."""
@@ -44,11 +29,6 @@ def set_default(cls, default):
4429

4530

4631
class Configuration(object, metaclass=TypeWithDefault):
47-
"""NOTE: This class is auto generated by OpenAPI Generator.
48-
49-
Ref: https://openapi-generator.tech
50-
Do not edit the class manually.
51-
"""
5232

5333
def __init__(self):
5434
"""Initialize configuration."""

influxdb_client_3/write_client/domain/__init__.py

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,6 @@
11
# coding: utf-8
22

33
# flake8: noqa
4-
"""
5-
InfluxDB OSS API Service.
6-
7-
The InfluxDB v2 API provides a programmatic interface for all interactions with InfluxDB. Access the InfluxDB API using the `/api/v2/` endpoint. # noqa: E501
8-
9-
OpenAPI spec version: 2.0.0
10-
Generated by: https://openapi-generator.tech
11-
"""
12-
134

145
from __future__ import absolute_import
156

influxdb_client_3/write_client/domain/write_precision.py

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,10 @@
11
# coding: utf-8
22

3-
"""
4-
InfluxDB OSS API Service.
5-
6-
The InfluxDB v2 API provides a programmatic interface for all interactions with InfluxDB. Access the InfluxDB API using the `/api/v2/` endpoint. # noqa: E501
7-
8-
OpenAPI spec version: 2.0.0
9-
Generated by: https://openapi-generator.tech
10-
"""
11-
12-
133
import pprint
144
import re # noqa: F401
155

166

177
class WritePrecision(object):
18-
"""NOTE: This class is auto generated by OpenAPI Generator.
19-
20-
Ref: https://openapi-generator.tech
21-
22-
Do not edit the class manually.
23-
"""
248

259
"""
2610
allowed enum values

influxdb_client_3/write_client/rest.py

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,5 @@
11
# coding: utf-8
22

3-
"""
4-
InfluxDB OSS API Service.
5-
6-
The InfluxDB v2 API provides a programmatic interface for all interactions with InfluxDB. Access the InfluxDB API using the `/api/v2/` endpoint. # noqa: E501
7-
8-
OpenAPI spec version: 2.0.0
9-
Generated by: https://openapi-generator.tech
10-
"""
11-
123
from __future__ import absolute_import
134

145
import logging
@@ -21,11 +12,6 @@
2112

2213

2314
class ApiException(InfluxDBError):
24-
"""NOTE: This class is auto generated by OpenAPI Generator.
25-
26-
Ref: https://openapi-generator.tech
27-
Do not edit the class manually.
28-
"""
2915

3016
def __init__(self, status=None, reason=None, http_resp=None):
3117
"""Initialize with HTTP response."""

influxdb_client_3/write_client/service/__init__.py

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,7 @@
11
# flake8: noqa
22

3-
"""
4-
InfluxDB OSS API Service.
5-
6-
The InfluxDB v2 API provides a programmatic interface for all interactions with InfluxDB. Access the InfluxDB API using the `/api/v2/` endpoint. # noqa: E501
7-
8-
OpenAPI spec version: 2.0.0
9-
Generated by: https://openapi-generator.tech
10-
"""
11-
12-
133
from __future__ import absolute_import
144

15-
16-
175
# import apis into api package
186
from influxdb_client_3.write_client.service.write_service import WriteService
197
from influxdb_client_3.write_client.service.signin_service import SigninService

0 commit comments

Comments
 (0)