File tree Expand file tree Collapse file tree 3 files changed +8
-2
lines changed
Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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"
Original file line number Diff line number Diff 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 ,
You can’t perform that action at this time.
0 commit comments