pretty print fix
This commit is contained in:
parent
ceedc74ce9
commit
96986ee543
|
@ -1,5 +1,5 @@
|
||||||
import json
|
import json
|
||||||
|
|
||||||
def pp(json_obj, indent=2):
|
def pp(json_obj, indent=2):
|
||||||
dumps = json.dumps(json_obj, indent=2)
|
dumps = json.dumps(json_obj, indent=indent)
|
||||||
print(dumps)
|
print(dumps)
|
||||||
|
|
Loading…
Reference in New Issue