Standardize code styling

This commit is contained in:
Devon Mackay
2018-07-10 10:10:38 -04:00
parent 40494e8f63
commit e23b767a72
3 changed files with 4 additions and 3 deletions

View File

@@ -2,12 +2,14 @@
run_python_lint() {
local python_files="${1}"
run_command "pylint ${python_files}"
return $?
}
run_python_static_analysis() {
local python_files="${1}"
run_command "bandit -c ./.bandit_config -r ${python_files}"
return $?
}