]> git.ipfire.org Git - thirdparty/httpx.git/commitdiff
Fix wrongly deleted params introduced #408 (#410)
authorJt Miclat <jtmiclat@gmail.com>
Sat, 28 Sep 2019 17:47:26 +0000 (01:47 +0800)
committerFlorimond Manca <florimond.manca@gmail.com>
Sat, 28 Sep 2019 17:47:26 +0000 (19:47 +0200)
httpx/api.py

index 10fabf5fc0b6eef94b9c33d44fed710e1fb241ab..3afb65faf013ad788a737489b431d23bb86beb56 100644 (file)
@@ -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,