Skip to content

Commit

Permalink
Merge branch 'master' into add-extensive-loggers
Browse files Browse the repository at this point in the history
  • Loading branch information
Ashutosh619-sudo committed Oct 10, 2024
2 parents 82635f2 + 72a4c47 commit d212165
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions qbosdk/apis/api_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ def _query_get_all(self, object_type: str, url: str) -> List[Dict]:
response = requests.get(url=request_url.format(start_position), headers=api_headers)

if response.status_code == 200:
print('bajsdbkjas')
logger.debug('Response for get request for url: %s, %s', url, response.text)
data = json.loads(response.text)
query_response = data['QueryResponse']
Expand Down Expand Up @@ -319,7 +318,7 @@ def _post_file(self, data, api_url):
logger.debug('Response for post request: %s', response.text)
result = json.loads(response.text)
return result['AttachableResponse'][0]['Attachable']

logger.info('Response for post request: %s', response.text)

if response.status_code == 400:
Expand Down

0 comments on commit d212165

Please sign in to comment.