about summary refs log tree commit diff
path: root/pkgs/applications/editors/jupyter/kernel.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/editors/jupyter/kernel.nix')
-rw-r--r--pkgs/applications/editors/jupyter/kernel.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/editors/jupyter/kernel.nix b/pkgs/applications/editors/jupyter/kernel.nix
index b34a956410e1e..4a079625d1832 100644
--- a/pkgs/applications/editors/jupyter/kernel.nix
+++ b/pkgs/applications/editors/jupyter/kernel.nix
@@ -40,7 +40,7 @@ in
       ${concatStringsSep "\n" (mapAttrsToList (kernelName: unfilteredKernel:
         let
           allowedKernelKeys = ["argv" "displayName" "language" "interruptMode" "env" "metadata" "logo32" "logo64"];
-          kernel = traceVal (filterAttrs (n: v: (any (x: x == n) allowedKernelKeys)) unfilteredKernel);
+          kernel = filterAttrs (n: v: (any (x: x == n) allowedKernelKeys)) unfilteredKernel;
           config = builtins.toJSON (
             kernel
             // {display_name = if (kernel.displayName != "") then kernel.displayName else kernelName;}