Skip to content

Commit a399f04

Browse files
committed
Fix doc warning [ch51963]
1 parent e6b50ea commit a399f04

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

dataikuapi/dss/app.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,16 +67,15 @@ def list_instances(self):
6767
"""
6868
List the existing instances of this app
6969
70-
:rtype: list of dicts
7170
:return a list of instances, each as a dict containing at least a "projectKey" field
71+
:rtype: list of dicts
7272
"""
7373
return self.client._perform_json(
7474
"GET", "/apps/%s/instances/" % self.app_id)
7575

7676
def get_instance(self, instance_key):
7777
return DSSAppInstance(self.client, instance_key)
7878

79-
8079
def get_manifest(self):
8180
raw_data = self.client._perform_json("GET", "/apps/%s/" % self.app_id)
8281
project_key = self.app_id[8:] if self.app_id.startswith('PROJECT_') else None

0 commit comments

Comments
 (0)