Merge pull request #128 from Mic92/SuperSandro2000-ruff

Fix ruf error on nixos-unstable
This commit is contained in:
Jörg Thalheim 2023-01-04 15:13:18 +00:00 committed by GitHub
commit bd1b4353f8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -21,7 +21,7 @@ python3.pkgs.buildPythonApplication rec {
echo -e "\x1b[32m## run black\x1b[0m"
LC_ALL=en_US.utf-8 black --check . bin/nix-update
echo -e "\x1b[32m## run ruff\x1b[0m"
ruff . bin/nix-update
ruff .
echo -e "\x1b[32m## run mypy\x1b[0m"
mypy --no-warn-unused-ignores --strict nix_update tests
'';