Skip to content

Commit 66b32c1

Browse files
committed
temporarily disable docstring flake8
Signed-off-by: Chris Snow <[email protected]>
1 parent 0846f45 commit 66b32c1

File tree

4 files changed

+27
-8
lines changed

4 files changed

+27
-8
lines changed

hpecp/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"""A python library for working with HPE Container Platform
1+
"""A python library for working with HPE Container Platform.
22
33
.. moduleauthor:: Chris Snow <[email protected]>
44

hpecp/catalog.py

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,10 @@ class CatalogController:
3333
of this class can be invoked using `client.catalog.method()`. See the
3434
example below:
3535
36-
Example:
37-
38-
client = ContainerPlatformClient(...).create_session()
39-
client.catalog.list()
40-
36+
Examples
37+
--------
38+
>>> client = ContainerPlatformClient(...).create_session()
39+
>>> client.catalog.list()
4140
"""
4241

4342
def __init__(self, client):

hpecp/tenant.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ def get(self, tenant_id):
230230
return Tenant(response.json())
231231

232232
def auth_setup(self, tenant_id, data):
233-
"""summary
233+
"""Setup external autentication for the tenant.
234234
235235
Parameters:
236236
tenant_id : type

setup.cfg

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,24 @@
22
description-file = README.md
33

44
[flake8]
5-
per-file-ignores = hpecp/__init__.py:F401
5+
per-file-ignores = hpecp/__init__.py:F401,
6+
hpecp/client.py:D101,D102,D100,D107,D105,D209,D400,D202,D205,D401,D200,D412
7+
hpecp/catalog.py:D101,D102,D100,D107,D105,D209,D400,D202,D205,D401,D200,D412
8+
hpecp/config.py:D101,D102,D100,D107,D105,D209,D400,D202,D205,D401,D200,D412
9+
hpecp/gateway.py:D101,D102,D100,D107,D105,D209,D400,D202,D205,D401,D200,D412
10+
hpecp/logger.py:D101,D102,D100,D107,D105,D209,D400,D202,D205,D401,D200,D412
11+
hpecp/lock.py:D101,D102,D100,D107,D105,D209,D400,D202,D205,D401,D200,D412
12+
hpecp/k8s_cluster.py:D101,D102,D100,D107,D105,D209,D400,D202,D205,D401,D200,D412
13+
hpecp/k8s_worker.py:D101,D102,D100,D107,D105,D209,D400,D202,D205,D401,D200,D412
14+
hpecp/license.py:D101,D102,D100,D107,D105,D209,D400,D202,D205,D401,D200,D412
15+
hpecp/exceptions.py:D101,D102,D100,D107,D105,D209,D400,D202,D205,D401,D200,D412
16+
hpecp/user.py:D101,D102,D100,D107,D105,D209,D400,D202,D205,D401,D200,D412
17+
hpecp/tenant.py:D101,D102,D100,D107,D105,D209,D400,D202,D205,D401,D200,D412
18+
hpecp/role.py:D101,D102,D100,D107,D105,D209,D400,D202,D205,D401,D200,D412
19+
20+
21+
22+
23+
24+
25+

0 commit comments

Comments
 (0)