File size: 116 Bytes
2ce847c |
1 2 3 4 5 6 7 8 |
.PHONY: style
# Format source code automatically
style:
black --line-length 119 --target-version py36 .
isort .
|
2ce847c |
1 2 3 4 5 6 7 8 |
.PHONY: style
# Format source code automatically
style:
black --line-length 119 --target-version py36 .
isort .
|