add --dummy-variables-rgx= param when calling pylint

new pylint in trusty complains about '_' variables if we don't do this.
This seems to be ok in older versions of pylint also.
This commit is contained in:
Scott Moser 2014-01-24 15:28:06 -05:00
parent b9fa90b977
commit 16cfb37ac7
1 changed files with 1 additions and 0 deletions

View File

@ -16,6 +16,7 @@ cmd=(
--rcfile=$RC_FILE
--disable=R
--disable=I
--dummy-variables-rgx="_"
"${files[@]}"
)