Skip to content

Commit

Permalink
remove debug logic
Browse files Browse the repository at this point in the history
  • Loading branch information
joshburt committed May 30, 2024
1 parent 16b6daf commit b3d91b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ae5_tools/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -526,7 +526,7 @@ def _api(self, method, endpoint, **kwargs):
allow_retry = False
while True:
try:
response = getattr(self.session, method)(url, allow_redirects=False, timeout=1, **kwargs)
response = getattr(self.session, method)(url, allow_redirects=False, **kwargs)
except requests.exceptions.ConnectionError:
raise AEUnexpectedResponseError("Unable to connect", method, url, **kwargs)
except requests.exceptions.Timeout:
Expand Down

0 comments on commit b3d91b6

Please sign in to comment.