diff options
| author | Trevor Gross <tmgross@umich.edu> | 2023-06-10 12:06:17 -0400 |
|---|---|---|
| committer | Trevor Gross <tgross@intrepidcs.com> | 2023-06-16 20:56:01 -0400 |
| commit | 22d00dcd47e0b8e18eb254966750fb523c726e4e (patch) | |
| tree | 603ea4c342940caabe746bc86822350aa5d7f9f4 /tests/run-make/rustdoc-map-file/validate_json.py | |
| parent | 4b71d79c972a605959b0a7c82b323fbd8562f070 (diff) | |
| download | rust-22d00dcd47e0b8e18eb254966750fb523c726e4e.tar.gz rust-22d00dcd47e0b8e18eb254966750fb523c726e4e.zip | |
Apply changes to fix python linting errors
Diffstat (limited to 'tests/run-make/rustdoc-map-file/validate_json.py')
| -rwxr-xr-x | tests/run-make/rustdoc-map-file/validate_json.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/run-make/rustdoc-map-file/validate_json.py b/tests/run-make/rustdoc-map-file/validate_json.py index 5c14c90b70d..912dea3791b 100755 --- a/tests/run-make/rustdoc-map-file/validate_json.py +++ b/tests/run-make/rustdoc-map-file/validate_json.py @@ -6,7 +6,7 @@ import json def find_redirect_map_file(folder, errors): - for root, dirs, files in os.walk(folder): + for root, _dirs, files in os.walk(folder): for name in files: if not name.endswith("redirect-map.json"): continue |
