Add pyflakes to shell, fix imports

This commit is contained in:
Evie Litherland-Smith 2024-12-02 07:11:14 +00:00
parent 264cecfb43
commit 1547b74037
2 changed files with 2 additions and 1 deletions

View file

@ -1,4 +1,4 @@
from typing import List, Dict
from typing import List
EXAMPLE = """
3 4

View file

@ -20,6 +20,7 @@
python = pkgs.${system}.python3;
pythonEnv = python.withPackages (
ps: with ps; [
flake8
isort
mypy
]