1
1

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
This commit is contained in:
2023-04-20 05:30:34 +02:00
committed by Campbell Barton
parent 716b9cff23
commit 3f0d2cf9e1

View File

@@ -48,6 +48,7 @@ def compute_paths(paths: List[str], use_default_paths: bool) -> List[str]:
"build_files", "build_files",
"intern", "intern",
"release", "release",
"scripts",
"doc", "doc",
"source", "source",
"tests", "tests",