33a5733cb9
Threads appear to be too dangerous for this
8 lines
178 B
Makefile
8 lines
178 B
Makefile
all:
|
|
isort *.py lib/*py tests/*py
|
|
autoflake --in-place --remove-unused-variables *.py lib/*py tests/*py
|
|
black *.py lib/*py tests/*py
|
|
|
|
test:
|
|
python3 -m unittest -v tests/*.py
|