Skip to content

Commit 0db00b4

Browse files
committed
Removed unnecessary print in update_project.
1 parent f401113 commit 0db00b4

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

dynatademand/api.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,6 @@ def get_projects(self):
168168
def update_project(self, project_id, update_data):
169169
self._validate_object("project_update", update_data)
170170
response_data = self._api_post('/projects/{}'.format(project_id), update_data)
171-
print(response_data.get('status').get('message'))
172171
if response_data.get('status').get('message') != 'success':
173172
raise DemandAPIError(
174173
"Could not update project. Demand API responded with: {}".format(

0 commit comments

Comments
 (0)