diff --git a/Makefile b/Makefile index ff3b0ac..bd04e35 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ FLAKE_FLAGS = --ignore=E501,F401,F403,F405 lint: - python3 -m flake8 $(FLAKE_FLAGS) + python -m flake8 $(FLAKE_FLAGS) test: - python3 -m pytest --verbose -s tests + python -m pytest --verbose -s tests