4 lines
84 B
Makefile
4 lines
84 B
Makefile
# Reformat Python code using Black formatter
|
|
.PHONY: reformat
|
|
reformat:
|
|
black *.py
|