Skip to content

Commit b0fafd3

Browse files
committed
fix(install): fix install
Signed-off-by: Chris Snow <[email protected]>
1 parent d37f786 commit b0fafd3

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

hpecp/client.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@
5252
ContainerPlatformClientException,
5353
)
5454
from .gateway import GatewayController
55+
from .install import InstallController
5556
from .k8s_cluster import K8sClusterController
5657
from .k8s_worker import K8sWorkerController
5758
from .license import LicenseController

hpecp/install.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,25 @@
1818
# ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
1919
# OTHER DEALINGS IN THE SOFTWARE.
2020

21+
"""Python library code for working with install API."""
22+
2123
from __future__ import absolute_import
2224

2325

2426
class InstallController:
27+
"""Controller for working with the install API."""
28+
2529
def __init__(self, client):
2630
self.client = client
2731

2832
def get(self):
33+
"""Get Install information.
34+
35+
Returns
36+
-------
37+
[type]
38+
[description]
39+
"""
2940
response = self.client._request(
3041
url="/api/v1/install",
3142
http_method="get",

0 commit comments

Comments
 (0)