Skip to content

Commit

Permalink
lint.sh: fix default task
Browse files Browse the repository at this point in the history
Fixes isort not running.
```
WARNING: Unable to parse file nyaa/ due to [Errno 13] Permission denied: '/path/to/nyaa/nyaa'
(venv)
```
  • Loading branch information
sharkykh committed Aug 3, 2017
1 parent 95e35a1 commit 81d8b0f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ function auto_pep8() {
--max-line-length ${max_line_length} \
--verbose \
&& \
isort ${isort_paths}
isort ${isort_paths} \
--recursive
}

function check_lint() {
Expand Down

0 comments on commit 81d8b0f

Please sign in to comment.