diff options
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/doc-linter.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/doc-linter.py b/scripts/doc-linter.py index c3304718..b1977f84 100644 --- a/scripts/doc-linter.py +++ b/scripts/doc-linter.py @@ -261,7 +261,7 @@ def main(): if handle_file_action(file) is False: bool_error = False except Exception as e: - for root, dirs, files in os.walk(DOCS_ROOT): + for root, _dirs, files in os.walk(DOCS_ROOT): path = root.split(os.sep) for file in files: if file.endswith(SUPPORTED_EXTS) and "_build" not in path: |
