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
1 changed files with 2 additions and 1 deletions

View File

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