Compare commits

..

No commits in common. "master" and "v0.8.1" have entirely different histories.

View File

@ -35,12 +35,10 @@ class Client:
base_url: str = "/",
lang: str = "en-US",
auth_store: BaseAuthStore | None = None,
timeout: float = 120,
) -> None:
self.base_url = base_url
self.lang = lang
self.auth_store = auth_store or BaseAuthStore() # LocalAuthStore()
self.timeout = timeout
# services
self.admins = AdminService(self)
self.collections = CollectionService(self)
@ -96,7 +94,7 @@ class Client:
json=body,
data=data,
files=files,
timeout=self.timeout,
timeout=120,
)
except Exception as e:
raise ClientResponseError(