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 e0389b2 commit e27bc37Copy full SHA for e27bc37
vvclient/http.py
@@ -31,6 +31,8 @@ async def request(self, route: Route, **kwargs) -> Any:
31
return await response.json()
32
else:
33
return await response.read()
34
+ elif response.status == 204:
35
+ return await response.read()
36
elif response.status == 404:
37
raise NotFoundError("Not found")
38
0 commit comments