Compare commits

...

2 commits

Author SHA1 Message Date
Bruno BELANYI b1f325432c nix: add tools to devShell 2021-12-13 18:06:02 +01:00
Bruno BELANYI 5f332cc4fa 2019: d07: ex1: quieten Mypy 2021-12-13 18:03:31 +01:00
2 changed files with 7 additions and 0 deletions

View file

@ -1,5 +1,9 @@
#!/usr/bin/env python
# Mypy has issues with assigning Callable to fields of objects
# See https://github.com/python/mypy/issues/708
# type: ignore
import itertools
import sys
from copy import deepcopy

View file

@ -56,6 +56,9 @@
devShell = pkgs.mkShell {
buildInputs = with pkgs; [
pkgs.python3Packages.black
pkgs.python3Packages.isort
pkgs.python3Packages.mypy
python3
];