1
0
Fork 0
mirror of https://gitlab.com/SIGBUS/nyaa.git synced 2024-11-01 00:25:53 +00:00

lint.sh: fix default task

Fixes isort not running.
```
WARNING: Unable to parse file nyaa/ due to [Errno 13] Permission denied: '/path/to/nyaa/nyaa'
(venv)
```
This commit is contained in:
Kfir Hadas 2017-08-03 03:10:24 +03:00
parent 95e35a10c9
commit 81d8b0f86b

View file

@ -12,7 +12,8 @@ function auto_pep8() {
--max-line-length ${max_line_length} \ --max-line-length ${max_line_length} \
--verbose \ --verbose \
&& \ && \
isort ${isort_paths} isort ${isort_paths} \
--recursive
} }
function check_lint() { function check_lint() {