remove `raw` parameter from `search` function

This commit is contained in:
Crussader 2022-03-27 21:01:50 +04:00 committed by GitHub
parent 0b1494c064
commit 2c59279c83
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -121,7 +121,7 @@ class Client:
return cls return cls
async def search(self, *, query: str, raw: bool = False): async def search(self, *, query: str):
if not self._bearer_token or time.time() >= self._expiry: if not self._bearer_token or time.time() >= self._expiry:
await self._fetch_bearer_token() await self._fetch_bearer_token()