From 678876e52a562af231cbecaf50de1087f9e4de3a Mon Sep 17 00:00:00 2001 From: Michal Sojka Date: Wed, 19 Aug 2020 15:15:51 +0200 Subject: [PATCH] nix: Add flake8 Without it, my editor no longer reports about Python formatting convention violations. --- shell.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/shell.nix b/shell.nix index e6c2b5e..b31f7e1 100644 --- a/shell.nix +++ b/shell.nix @@ -73,6 +73,7 @@ let in pkgs.python37.override {inherit packageOverrides; self = python;}; in python.withPackages(ps: with ps; [ + flake8 # For syntax checking while editing .py files flask flask-cors matplotlib -- 2.39.2