Skip to content

Commit 5f8e959

Browse files
committed
cleanup prints
1 parent fc58b56 commit 5f8e959

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

dataikuapi/dss/dataset.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,6 @@ def copy_to(self, target, sync_schema=True, write_mode="OVERWRITE"):
166166
"syncSchema": sync_schema,
167167
"writeMode" : write_mode
168168
}
169-
print(dqr)
170169
future_resp = self.client._perform_json("POST", "/projects/%s/datasets/%s/actions/copyTo" % (self.project_key, self.dataset_name), body=dqr)
171170
return DSSFuture(self.client, future_resp.get("jobId", None), future_resp)
172171

dataikuapi/dssclient.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,6 @@ def install_plugin_from_store(self, plugin_id):
236236
f = self._perform_json("POST", "/plugins/actions/installFromStore", body={
237237
"pluginId": plugin_id
238238
})
239-
print(f)
240239
return DSSFuture(self, f["jobId"])
241240

242241
def install_plugin_from_git(self, repository_url, checkout = "master", subpath=None):

0 commit comments

Comments
 (0)