Skip to content

Commit bfc5ba0

Browse files
committedApr 20, 2022
fix a bug in Client.delete and AsyncClient.delete
1 parent 404e7c3 commit bfc5ba0

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed
 

‎CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
88

99
-
1010

11+
## [0.8.1] - 2022-04-20
12+
13+
### Bugfix
14+
15+
- fix a bug in `Client.delete` and `AsyncClient.delete` method
16+
1117
## [0.8.0] - 2022-04-11
1218

1319
### Added

‎src/audible/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
__description__ = "A(Sync) Interface for internal Audible API written in " \
33
"pure Python."
44
__url__ = "https://github.com/mkb79/audible"
5-
__version__ = "0.8.0"
5+
__version__ = "0.8.1"
66
__author__ = "mkb79"
77
__author_email__ = "mkb79@hackitall.de"
88
__license__ = "AGPL"

‎src/audible/client.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ def delete(
280280
Callable[[httpx.Response], Any]] = None,
281281
**kwargs
282282
) -> Any:
283-
self._prepare_params(**kwargs)
283+
self._prepare_params(kwargs)
284284
return self._request(
285285
method="DELETE",
286286
path=path,

0 commit comments

Comments
 (0)