Skip to content

Commit 3cac5e3

Browse files
committed
silence linter warning about running without timeout
1 parent 196916d commit 3cac5e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bma_client_lib/bma_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ def _update_access_token(self) -> None:
101101
self.access_token = data["access_token"]
102102
logger.warning(f"got new access_token: {self.access_token}")
103103
self.auth = BmaBearerAuth(token=self.access_token)
104-
self.client = httpx.Client(auth=self.auth, timeout=None)
104+
self.client = httpx.Client(auth=self.auth, timeout=None) # noqa: S113
105105

106106
def _download_job_source(self, job: Job) -> Path:
107107
"""Download the file needed to do a job."""

0 commit comments

Comments
 (0)