Skip to content

Commit f72da5d

Browse files
committed
remove prints. will write tests
1 parent ee5d7d3 commit f72da5d

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

dynatademand/api.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,7 @@ def _api_get(self, uri, query_params=None):
6363
'Authorization': 'Bearer {}'.format(self._access_token),
6464
'Content-Type': "application/json",
6565
}
66-
print(url)
67-
print(query_params)
68-
print(request_headers)
66+
6967
response = requests.get(url=url, params=query_params, headers=request_headers)
7068
if response.status_code > 399:
7169
raise DemandAPIError('Demand API request to {} failed with status {}. Response: {}'.format(

0 commit comments

Comments
 (0)