TNO Intern

Commit 552a2068 authored by Arjo Segers's avatar Arjo Segers
Browse files

Added make target for `black`.

parent 133f6423
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -5,11 +5,17 @@
help:
	@echo " "
	@echo " Usage:"
	@echo "   make black          # re-format python files following 'black' tool"
	@echo "   make docu           # build documentation"
	@echo "   make clean          # remove temporary files"
	@echo "   make clean-all      # remove temporary files and generated documentation"
	@echo " "

# re-format python files,
# use local maximum line-length convention ..
black:
	black --line-length=99 py

# generate documentation:
docu:
	@echo " "