Skip to content

Commit a678cd3

Browse files
committed
Fix format
1 parent 03b5f29 commit a678cd3

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

.github/scripts/check_spdx_headers.py

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,17 @@ def should_skip_file(file_path: Path) -> bool:
7878
return True
7979

8080
# Skip directories
81-
dir_patterns = ["__pycache__", ".pytest_cache", "node_modules", "venv", "env", ".egg-info", "dist", "build", ".claude"]
81+
dir_patterns = [
82+
"__pycache__",
83+
".pytest_cache",
84+
"node_modules",
85+
"venv",
86+
"env",
87+
".egg-info",
88+
"dist",
89+
"build",
90+
".claude",
91+
]
8292
for pattern in dir_patterns:
8393
if pattern in file_path.parts:
8494
return True

0 commit comments

Comments
 (0)