Skip to content

Commit 3ec01ce

Browse files
committed
linted python files
Signed-off-by: BluThaitanium <[email protected]>
1 parent 7fccaf8 commit 3ec01ce

File tree

251 files changed

+9795
-7135
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

251 files changed

+9795
-7135
lines changed

api/client/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ pip install "git+https://github.com/machine-learning-exchange/mlx.git@main#egg=m
3232
Then import the package:
3333

3434
```python
35-
import swagger_client
35+
import swagger_client # noqa: F401
3636
```
3737

3838

@@ -43,9 +43,9 @@ Please follow the [installation procedure](#installation--usage) and then run th
4343
```python
4444
from __future__ import print_function
4545
import time
46-
import swagger_client
47-
from swagger_client.rest import ApiException
48-
from pprint import pprint
46+
import swagger_client # noqa: F401
47+
from swagger_client.rest import ApiException # noqa: F401
48+
from pprint import pprint # noqa: F401
4949

5050
# create an instance of the API class
5151
api_instance = swagger_client.ComponentServiceApi()

api/client/docs/ApplicationSettingsApi.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ Returns the application settings.
2020
```python
2121
from __future__ import print_function
2222
import time
23-
import swagger_client
24-
from swagger_client.rest import ApiException
25-
from pprint import pprint
23+
import swagger_client # noqa: F401
24+
from swagger_client.rest import ApiException # noqa: F401
25+
from pprint import pprint # noqa: F401
2626

2727
# create an instance of the API class
2828
api_instance = swagger_client.ApplicationSettingsApi()
@@ -63,9 +63,9 @@ Modify one or more of the application settings.
6363
```python
6464
from __future__ import print_function
6565
import time
66-
import swagger_client
67-
from swagger_client.rest import ApiException
68-
from pprint import pprint
66+
import swagger_client # noqa: F401
67+
from swagger_client.rest import ApiException # noqa: F401
68+
from pprint import pprint # noqa: F401
6969

7070
# create an instance of the API class
7171
api_instance = swagger_client.ApplicationSettingsApi()
@@ -110,9 +110,9 @@ Set and store the application settings.
110110
```python
111111
from __future__ import print_function
112112
import time
113-
import swagger_client
114-
from swagger_client.rest import ApiException
115-
from pprint import pprint
113+
import swagger_client # noqa: F401
114+
from swagger_client.rest import ApiException # noqa: F401
115+
from pprint import pprint # noqa: F401
116116

117117
# create an instance of the API class
118118
api_instance = swagger_client.ApplicationSettingsApi()

api/client/docs/CatalogServiceApi.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ Method | HTTP request | Description
1818
```python
1919
from __future__ import print_function
2020
import time
21-
import swagger_client
22-
from swagger_client.rest import ApiException
23-
from pprint import pprint
21+
import swagger_client # noqa: F401
22+
from swagger_client.rest import ApiException # noqa: F401
23+
from pprint import pprint # noqa: F401
2424

2525
# create an instance of the API class
2626
api_instance = swagger_client.CatalogServiceApi()
@@ -69,9 +69,9 @@ No authorization required
6969
```python
7070
from __future__ import print_function
7171
import time
72-
import swagger_client
73-
from swagger_client.rest import ApiException
74-
from pprint import pprint
72+
import swagger_client # noqa: F401
73+
from swagger_client.rest import ApiException # noqa: F401
74+
from pprint import pprint # noqa: F401
7575

7676
# create an instance of the API class
7777
api_instance = swagger_client.CatalogServiceApi()
@@ -116,9 +116,9 @@ No authorization required
116116
```python
117117
from __future__ import print_function
118118
import time
119-
import swagger_client
120-
from swagger_client.rest import ApiException
121-
from pprint import pprint
119+
import swagger_client # noqa: F401
120+
from swagger_client.rest import ApiException # noqa: F401
121+
from pprint import pprint # noqa: F401
122122

123123
# create an instance of the API class
124124
api_instance = swagger_client.CatalogServiceApi()

api/client/docs/ComponentServiceApi.md

Lines changed: 39 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ Method | HTTP request | Description
2828
```python
2929
from __future__ import print_function
3030
import time
31-
import swagger_client
32-
from swagger_client.rest import ApiException
33-
from pprint import pprint
31+
import swagger_client # noqa: F401
32+
from swagger_client.rest import ApiException # noqa: F401
33+
from pprint import pprint # noqa: F401
3434

3535
# create an instance of the API class
3636
api_instance = swagger_client.ComponentServiceApi()
@@ -72,9 +72,9 @@ No authorization required
7272
```python
7373
from __future__ import print_function
7474
import time
75-
import swagger_client
76-
from swagger_client.rest import ApiException
77-
from pprint import pprint
75+
import swagger_client # noqa: F401
76+
from swagger_client.rest import ApiException # noqa: F401
77+
from pprint import pprint # noqa: F401
7878

7979
# create an instance of the API class
8080
api_instance = swagger_client.ComponentServiceApi()
@@ -116,9 +116,9 @@ No authorization required
116116
### Example
117117
```python
118118
from __future__ import print_function
119-
import swagger_client
120-
from swagger_client.rest import ApiException
121-
from pprint import pprint
119+
import swagger_client # noqa: F401
120+
from swagger_client.rest import ApiException # noqa: F401
121+
from pprint import pprint # noqa: F401
122122

123123
# create an instance of the API class
124124
api_instance = swagger_client.ComponentServiceApi()
@@ -159,9 +159,9 @@ Returns the component artifacts compressed into a .tgz (.tar.gz) file.
159159
### Example
160160
```python
161161
from __future__ import print_function
162-
import swagger_client
163-
from swagger_client.rest import ApiException
164-
from urllib3.response import HTTPResponse
162+
import swagger_client # noqa: F401
163+
from swagger_client.rest import ApiException # noqa: F401
164+
from urllib3.response import HTTPResponse # noqa: F401
165165

166166

167167
# create an instance of the API class
@@ -214,9 +214,9 @@ Generate sample code to use component in a pipeline
214214
### Example
215215
```python
216216
from __future__ import print_function
217-
import swagger_client
218-
from swagger_client.rest import ApiException
219-
from pprint import pprint
217+
import swagger_client # noqa: F401
218+
from swagger_client.rest import ApiException # noqa: F401
219+
from pprint import pprint # noqa: F401
220220

221221
# create an instance of the API class
222222
api_instance = swagger_client.ComponentServiceApi()
@@ -258,9 +258,9 @@ No authorization required
258258
### Example
259259
```python
260260
from __future__ import print_function
261-
import swagger_client
262-
from swagger_client.rest import ApiException
263-
from pprint import pprint
261+
import swagger_client # noqa: F401
262+
from swagger_client.rest import ApiException # noqa: F401
263+
from pprint import pprint # noqa: F401
264264

265265
# create an instance of the API class
266266
api_instance = swagger_client.ComponentServiceApi()
@@ -302,9 +302,9 @@ No authorization required
302302
### Example
303303
```python
304304
from __future__ import print_function
305-
import swagger_client
306-
from swagger_client.rest import ApiException
307-
from pprint import pprint
305+
import swagger_client # noqa: F401
306+
from swagger_client.rest import ApiException # noqa: F401
307+
from pprint import pprint # noqa: F401
308308

309309
# create an instance of the API class
310310
api_instance = swagger_client.ComponentServiceApi()
@@ -346,9 +346,9 @@ No authorization required
346346
### Example
347347
```python
348348
from __future__ import print_function
349-
import swagger_client
350-
from swagger_client.rest import ApiException
351-
from pprint import pprint
349+
import swagger_client # noqa: F401
350+
from swagger_client.rest import ApiException # noqa: F401
351+
from pprint import pprint # noqa: F401
352352

353353
# create an instance of the API class
354354
api_instance = swagger_client.ComponentServiceApi()
@@ -396,9 +396,9 @@ No authorization required
396396
### Example
397397
```python
398398
from __future__ import print_function
399-
import swagger_client
400-
from swagger_client.rest import ApiException
401-
from pprint import pprint
399+
import swagger_client # noqa: F401
400+
from swagger_client.rest import ApiException # noqa: F401
401+
from pprint import pprint # noqa: F401
402402

403403
# create an instance of the API class
404404
api_instance = swagger_client.ComponentServiceApi()
@@ -444,9 +444,9 @@ No authorization required
444444
### Example
445445
```python
446446
from __future__ import print_function
447-
import swagger_client
448-
from swagger_client.rest import ApiException
449-
from pprint import pprint
447+
import swagger_client # noqa: F401
448+
from swagger_client.rest import ApiException # noqa: F401
449+
from pprint import pprint # noqa: F401
450450

451451
# create an instance of the API class
452452
api_instance = swagger_client.ComponentServiceApi()
@@ -487,9 +487,9 @@ No authorization required
487487
### Example
488488
```python
489489
from __future__ import print_function
490-
import swagger_client
491-
from swagger_client.rest import ApiException
492-
from pprint import pprint
490+
import swagger_client # noqa: F401
491+
from swagger_client.rest import ApiException # noqa: F401
492+
from pprint import pprint # noqa: F401
493493

494494
# create an instance of the API class
495495
api_instance = swagger_client.ComponentServiceApi()
@@ -533,9 +533,9 @@ No authorization required
533533
### Example
534534
```python
535535
from __future__ import print_function
536-
import swagger_client
537-
from swagger_client.rest import ApiException
538-
from pprint import pprint
536+
import swagger_client # noqa: F401
537+
from swagger_client.rest import ApiException # noqa: F401
538+
from pprint import pprint # noqa: F401
539539

540540
# create an instance of the API class
541541
api_instance = swagger_client.ComponentServiceApi()
@@ -579,9 +579,9 @@ No authorization required
579579
### Example
580580
```python
581581
from __future__ import print_function
582-
import swagger_client
583-
from swagger_client.rest import ApiException
584-
from pprint import pprint
582+
import swagger_client # noqa: F401
583+
from swagger_client.rest import ApiException # noqa: F401
584+
from pprint import pprint # noqa: F401
585585

586586
# create an instance of the API class
587587
api_instance = swagger_client.ComponentServiceApi()

api/client/docs/CredentialServiceApi.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ Creates a credential associated with a pipeline.
2121
```python
2222
from __future__ import print_function
2323
import time
24-
import swagger_client
25-
from swagger_client.rest import ApiException
26-
from pprint import pprint
24+
import swagger_client # noqa: F401
25+
from swagger_client.rest import ApiException # noqa: F401
26+
from pprint import pprint # noqa: F401
2727

2828
# create an instance of the API class
2929
api_instance = swagger_client.CredentialServiceApi()
@@ -66,9 +66,9 @@ No authorization required
6666
```python
6767
from __future__ import print_function
6868
import time
69-
import swagger_client
70-
from swagger_client.rest import ApiException
71-
from pprint import pprint
69+
import swagger_client # noqa: F401
70+
from swagger_client.rest import ApiException # noqa: F401
71+
from pprint import pprint # noqa: F401
7272

7373
# create an instance of the API class
7474
api_instance = swagger_client.CredentialServiceApi()
@@ -110,9 +110,9 @@ No authorization required
110110
```python
111111
from __future__ import print_function
112112
import time
113-
import swagger_client
114-
from swagger_client.rest import ApiException
115-
from pprint import pprint
113+
import swagger_client # noqa: F401
114+
from swagger_client.rest import ApiException # noqa: F401
115+
from pprint import pprint # noqa: F401
116116

117117
# create an instance of the API class
118118
api_instance = swagger_client.CredentialServiceApi()
@@ -155,9 +155,9 @@ No authorization required
155155
```python
156156
from __future__ import print_function
157157
import time
158-
import swagger_client
159-
from swagger_client.rest import ApiException
160-
from pprint import pprint
158+
import swagger_client # noqa: F401
159+
from swagger_client.rest import ApiException # noqa: F401
160+
from pprint import pprint # noqa: F401
161161

162162
# create an instance of the API class
163163
api_instance = swagger_client.CredentialServiceApi()

0 commit comments

Comments
 (0)