We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 196916d commit 3cac5e3Copy full SHA for 3cac5e3
src/bma_client_lib/bma_client.py
@@ -101,7 +101,7 @@ def _update_access_token(self) -> None:
101
self.access_token = data["access_token"]
102
logger.warning(f"got new access_token: {self.access_token}")
103
self.auth = BmaBearerAuth(token=self.access_token)
104
- self.client = httpx.Client(auth=self.auth, timeout=None)
+ self.client = httpx.Client(auth=self.auth, timeout=None) # noqa: S113
105
106
def _download_job_source(self, job: Job) -> Path:
107
"""Download the file needed to do a job."""
0 commit comments