CJohnston079 / obfuscator

0 stars 0 forks source link

`JSON` data is formatted without indentation #30

Closed CJohnston079 closed 4 months ago

CJohnston079 commented 4 months ago

Issue

JSON data is formatted in format_json.py without any indentation, making it difficult to read. It is still possible to write this data to a .json file with indentations, however, it would be preferable to return an correctly indented JSON string.

Proposed resolution

Add the indent parameter to the json.dumps method in format_json.py.

CJohnston079 commented 4 months ago

Resolved in 155fad1e3674b1e7177be65a9456be5238347c14 with proposed resolution.