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 95600bf commit c1d1f9fCopy full SHA for c1d1f9f
linkup/_version.py
@@ -1 +1 @@
1
-__version__ = "0.2.7"
+__version__ = "0.2.8"
linkup/client.py
@@ -112,7 +112,7 @@ def search(
112
response: httpx.Response = self._request(
113
method="POST",
114
url="/search",
115
- data=params,
+ json=params,
116
timeout=None,
117
)
118
if response.status_code != 200:
@@ -189,7 +189,7 @@ async def async_search(
189
response: httpx.Response = await self._async_request(
190
191
192
193
194
195
0 commit comments