Python - Add check-style to Makefile

This commit is contained in:
Anthony MOI
2020-02-18 11:11:07 -05:00
parent 81be207819
commit 8e9fae6be4

View File

@@ -1,6 +1,9 @@
.PHONY: style
.PHONY: style check-style
# Format source code automatically
style:
black --line-length 100 --target-version py35 examples tokenizers
check-style:
black --check --line-length 100 --target-version py35 examples tokenizers