Skip to content

Commit

Permalink
fix a bug in Client.delete and AsyncClient.delete
Browse files Browse the repository at this point in the history
  • Loading branch information
mkb79 committed Apr 20, 2022
1 parent 404e7c3 commit bfc5ba0
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

-

## [0.8.1] - 2022-04-20

### Bugfix

- fix a bug in `Client.delete` and `AsyncClient.delete` method

## [0.8.0] - 2022-04-11

### Added
Expand Down
2 changes: 1 addition & 1 deletion src/audible/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
__description__ = "A(Sync) Interface for internal Audible API written in " \
"pure Python."
__url__ = "https://github.com/mkb79/audible"
__version__ = "0.8.0"
__version__ = "0.8.1"
__author__ = "mkb79"
__author_email__ = "[email protected]"
__license__ = "AGPL"
Expand Down
2 changes: 1 addition & 1 deletion src/audible/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ def delete(
Callable[[httpx.Response], Any]] = None,
**kwargs
) -> Any:
self._prepare_params(**kwargs)
self._prepare_params(kwargs)
return self._request(
method="DELETE",
path=path,
Expand Down

0 comments on commit bfc5ba0

Please sign in to comment.