-
HTTP DELETE methods frequently return "No content" when the delete is successful. Is there a way to force uplink to return None in these cases? e.g. @delete("tableservice/v1/tables/{id}")
def delete_table(self, id: str) -> None:
pass |
Beta Was this translation helpful? Give feedback.
Answered by
prkumar
Nov 12, 2022
Replies: 1 comment 1 reply
-
Hi @mure! I believe you could use a @response_handler to return None when the response code is 204. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
mure
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @mure! I believe you could use a @response_handler to return None when the response code is 204.