Skip to content

Commit 7f16e72

Browse files
authored
Update submission.py
1 parent 435dcaf commit 7f16e72

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

gen3/submission.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,7 @@ def delete_node(self, program, project, uuid):
138138
139139
Examples:
140140
This deletes a node from the CCLE project on the sandbox commons.
141+
141142
>>> Gen3Submission.delete_node("DCF", "CCLE", uuid)
142143
"""
143144
api_url = "{}/api/v0/submission/{}/{}/entities/{}".format(
@@ -154,6 +155,7 @@ def create_project(self, program, json):
154155
155156
Examples:
156157
This creates a project on the DCF program on the sandbox commons.
158+
157159
>>> Gen3Submission.create_project("DCF", json)
158160
"""
159161
api_url = "{}/api/v0/submission/{}".format(self._endpoint, program)
@@ -186,6 +188,7 @@ def create_program(self, json):
186188
187189
Examples:
188190
This creates a program on the sandbox commons.
191+
189192
>>> Gen3Submission.create_program(json)
190193
"""
191194
api_url = "{}/api/v0/submission/".format(self._endpoint)

0 commit comments

Comments
 (0)