Standardize code styling

This commit is contained in:
Devon Mackay 2018-07-10 10:08:45 -04:00
parent d2c610fbf7
commit 40494e8f63
2 changed files with 2 additions and 0 deletions

View File

@ -2,6 +2,7 @@
install_python_packages() {
local install_flags="${1}"
pipenv install ${install_flags}
return $?
}

View File

@ -14,6 +14,7 @@ check_system_pip_for () {
# Used whenever an environment sensitive command is being run
run_command () {
local cmd="${1}"
pipenv run ${cmd}
return $?
}