1
0
mirror of https://github.com/mikf/gallery-dl.git synced 2024-11-26 04:32:51 +01:00

remove another '*' for keyword-only arguments

076380e0
This commit is contained in:
Mike Fährmann 2023-09-13 21:38:31 +02:00
parent 6ae92da57e
commit 899df8f237
No known key found for this signature in database
GPG Key ID: 5680CA389D365A88

View File

@ -239,8 +239,7 @@ def dump_json(obj, fp=sys.stdout, ensure_ascii=True, indent=4):
fp.write("\n")
def dump_response(response, fp, *,
headers=False, content=True, hide_auth=True):
def dump_response(response, fp, headers=False, content=True, hide_auth=True):
"""Write the contents of 'response' into a file-like object"""
if headers: