pytorch
b2894de0 - Indent allowlist_for_publicAPI.json entries

Commit
2 years ago
Indent allowlist_for_publicAPI.json entries Having the entire file on one line like this means it's not only less human readabled, but also it's guarunteed to create merge conflict if two PRs change it at around the same time. Generated with the following code: ``` with open('allowlist_for_publicAPI.json', 'r') as f: allow_list = json.load(f) with open('allowlist_for_publicAPI.json', 'w') as f: f.write(json.dumps(allow_list, indent=2)) ``` Pull Request resolved: https://github.com/pytorch/pytorch/pull/75792 Approved by: https://github.com/albanD
Author
Committer
Parents
Loading