Skip to content

Commit

Permalink
Allow more flexible pyquality (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmelos committed Oct 15, 2019
1 parent e711e31 commit 8a7083c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dotfiles/mybashrc
Expand Up @@ -243,7 +243,7 @@ mysql_truncate_queries() {
# - find . -name '*.py' -exec pyquality {} \;
pyquality() {
for path in "$@"; do
black --line-length 120 "$path"
black "$path"
isort -rc "$path"
flake8 "$path"
done
Expand Down

0 comments on commit 8a7083c

Please sign in to comment.