1
0
Fork 0
mirror of synced 2024-06-26 18:10:24 +12:00

Fixed indent headers.json

This commit is contained in:
Angel Rey 2020-09-11 14:19:06 -05:00 committed by Cristian Vargas
parent 1cce786d6d
commit a8a8fd14ac

View file

@ -185,7 +185,7 @@ def get_headers(url: str, timeout: int=None) -> str:
timeout=timeout,
)
return pyjson.dumps(dict(response.headers))
return pyjson.dumps(dict(response.headers), indent=4)
@enforce_types