From 2c59279c836b7c5b9faa0b4d9223314c5b64a3fc Mon Sep 17 00:00:00 2001 From: Crussader <75786691+Crussader@users.noreply.github.com> Date: Sun, 27 Mar 2022 21:01:50 +0400 Subject: [PATCH] remove `raw` parameter from `search` function --- pomice/spotify/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pomice/spotify/client.py b/pomice/spotify/client.py index 518fcf9..e698108 100644 --- a/pomice/spotify/client.py +++ b/pomice/spotify/client.py @@ -121,7 +121,7 @@ class Client: 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: await self._fetch_bearer_token()