Skip to content

Commit

Permalink
fixed warning message thrown when logging in
Browse files Browse the repository at this point in the history
  • Loading branch information
cms21 committed Oct 30, 2023
1 parent 37e8044 commit e7bde0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion balsam/client/requests_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ def request(
logger.warning(f"Attempt retry ({self._attempt} of {self.retry_count}) of connection: {exc}")
self.backoff(exc)
except requests.HTTPError as exc:
if authenticating == False:
if authenticating is False:
logger.warning(f"Attempt retry ({self._attempt} of {self.retry_count}) of connection: {exc}")
self.backoff(exc)
else:
Expand Down

0 comments on commit e7bde0e

Please sign in to comment.