Merge pull request #43860 from volth/unused2

treewide: remove unused 'inherit' in let blocks
This commit is contained in:
Frederik Rietdijk
2018-07-21 11:13:36 +02:00
committed by GitHub
60 changed files with 45 additions and 86 deletions

View File

@@ -23,7 +23,7 @@
}:
let
inherit (stdenv.lib) optional optionalString concatStringsSep;
inherit (stdenv.lib) optional optionalString;
inherit (stdenv) isDarwin;
in buildPythonPackage rec {
pname = "pandas";

View File

@@ -24,7 +24,7 @@
}:
let
inherit (stdenv.lib) optional optionals optionalString concatStringsSep;
inherit (stdenv.lib) optional optionals optionalString;
inherit (stdenv) isDarwin;
in buildPythonPackage rec {