From: Jt Miclat Date: Sat, 28 Sep 2019 17:47:26 +0000 (+0800) Subject: Fix wrongly deleted params introduced #408 (#410) X-Git-Tag: 0.7.5~29 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ea137a96d904bdf1ea5a9eff1342b4d3a9ac5b30;p=thirdparty%2Fhttpx.git Fix wrongly deleted params introduced #408 (#410) --- diff --git a/httpx/api.py b/httpx/api.py index 10fabf5f..3afb65fa 100644 --- a/httpx/api.py +++ b/httpx/api.py @@ -261,8 +261,8 @@ def patch( def delete( url: URLTypes, *, - data: RequestData = None, - files: RequestFiles = None, + params: QueryParamTypes = None, + headers: HeaderTypes = None, cookies: CookieTypes = None, stream: bool = False, auth: AuthTypes = None,