Skip to content

Commit

Permalink
fix: remove debug messages
Browse files Browse the repository at this point in the history
  • Loading branch information
uniqueg authored and lbeckman314 committed Jan 8, 2024
1 parent 5379b2a commit e67ab6e
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions tes/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,11 +78,9 @@ def send_request(
response = getattr(requests, method)(
path.format(**kwargs), **kwargs_requests)
except requests.exceptions.RequestException as exc:
print("EXCEPTION")
http_exceptions[path] = exc
continue
if response.status_code != 404:
print("SUCCESS")
break

if response.status_code is None:
Expand Down

0 comments on commit e67ab6e

Please sign in to comment.