Correct the command to run mypy in flake

This commit is contained in:
Andreas Zweili 2023-07-02 13:42:42 +02:00
parent f7204f43d0
commit 6d1611bafa
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@
checkInputs = [ pkgs.inventoryDevEnv ];
checkPhase = ''
mkdir -p $out
mypy src/
cd src/ && mypy --config-file=../pyproject.toml .
flake8 . --count --show-source --statistics
'';
};