All checks were successful
/ job (push) Successful in 1m12s
new development branch from root commit
9 lines
172 B
Bash
9 lines
172 B
Bash
rwx_pydoclint() {
|
|
local path="${1}"
|
|
pydoclint \
|
|
--allow-init-docstring True \
|
|
--quiet \
|
|
--skip-checking-short-docstrings False \
|
|
--style "sphinx" \
|
|
"${path}"
|
|
}
|