From 3f0d2cf9e1c14226df50eeaa17b8057ab4f1210c Mon Sep 17 00:00:00 2001 From: Damien Picard Date: Thu, 20 Apr 2023 05:30:34 +0200 Subject: [PATCH] Add scripts dir to the make format paths for Python `make format` uses autopep8 to format Python, using a list of paths specified in `tools/utils_maintenance/autopep8_format_paths.py`. The scripts folder used to be a submodule inside release, but it is now at the root of the blender repo. This commit adds `scripts` to the list of paths to format. Ref !107143 --- tools/utils_maintenance/autopep8_format_paths.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/utils_maintenance/autopep8_format_paths.py b/tools/utils_maintenance/autopep8_format_paths.py index 2412aad2bfd..7b8c9c036c7 100755 --- a/tools/utils_maintenance/autopep8_format_paths.py +++ b/tools/utils_maintenance/autopep8_format_paths.py @@ -48,6 +48,7 @@ def compute_paths(paths: List[str], use_default_paths: bool) -> List[str]: "build_files", "intern", "release", + "scripts", "doc", "source", "tests",