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

View File

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