json: minify by default (#39457)

This commit is contained in:
Harmen Stoppels 2023-08-16 13:26:40 +02:00 committed by GitHub
parent 47f176d635
commit b451791336
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,7 +11,7 @@
__all__ = ["load", "dump", "SpackJSONError"] __all__ = ["load", "dump", "SpackJSONError"]
_json_dump_args = {"indent": 2, "separators": (",", ": ")} _json_dump_args = {"indent": None, "separators": (",", ":")}
def load(stream: Any) -> Dict: def load(stream: Any) -> Dict: