File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -52,16 +52,16 @@ echo '---------------------------------------'
52
52
echo ' | Auto-formatting src/...'
53
53
echo ' ---------------------------------------'
54
54
55
- find -L src/ -type f -name " *.py" -exec pyink --config pyproject.toml {} +
55
+ find -L src/ -not -path " */.* " - type f -name " *.py" -exec pyink --config pyproject.toml {} +
56
56
57
57
echo ' ---------------------------------------'
58
58
echo ' | Auto-formatting tests/...'
59
59
echo ' ---------------------------------------'
60
60
61
- find -L tests/ -type f -name " *.py" -exec pyink --config pyproject.toml {} +
61
+ find -L tests/ -not -path " */.* " - type f -name " *.py" -exec pyink --config pyproject.toml {} +
62
62
63
63
echo ' ---------------------------------------'
64
64
echo ' | Auto-formatting contributing/...'
65
65
echo ' ---------------------------------------'
66
66
67
- find -L contributing/ -type f -name " *.py" -exec pyink --config pyproject.toml {} +
67
+ find -L contributing/ -not -path " */.* " - type f -name " *.py" -exec pyink --config pyproject.toml {} +
You can’t perform that action at this time.
0 commit comments