Skip to content

Commit

Permalink
Remove --skip-numeric-underscore-normalization flag from black commands
Browse files Browse the repository at this point in the history
  • Loading branch information
laggron42 committed Mar 15, 2019
1 parent 74047fd commit 7afaa3a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ help:

reformat:
@echo "Starting..."
@python3 -m black -l 99 --skip-numeric-underscore-normalization `git ls-files "*.py"`
@python3 -m black -l 99 `git ls-files "*.py"`

stylecheck:
@echo "Starting..."
@python3 -m black -l 99 --skip-numeric-underscore-normalization --check --diff `git ls-files "*.py"`
@python3 -m black -l 99 --check --diff `git ls-files "*.py"`

gettext:
@echo "Starting..."
Expand Down

0 comments on commit 7afaa3a

Please sign in to comment.