From 8e01fbd33116a6fdfad60b1d656c145cd781ad24 Mon Sep 17 00:00:00 2001 From: Martin Reinecke <martin@mpa-garching.mpg.de> Date: Fri, 1 Dec 2017 15:50:12 +0100 Subject: [PATCH] remove debug prints --- nifty/operators/dof_projection_operator.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/nifty/operators/dof_projection_operator.py b/nifty/operators/dof_projection_operator.py index e639351e8..7d1139d19 100644 --- a/nifty/operators/dof_projection_operator.py +++ b/nifty/operators/dof_projection_operator.py @@ -22,10 +22,8 @@ class DOFProjectionOperator(LinearOperator): if not len(dofdex.domain) == 1: raise ValueError("dofdex must live on exactly one Space") if not np.issubdtype(dofdex.dtype, np.integer): - print (dofdex.dtype.type, np.integer) raise TypeError("dofdex must contain integer numbers") if partner != dofdex.domain[0]: - print(partner, dofdex.domain[0]) raise ValueError("incorrect dofdex domain") nbin = dofdex.max() -- GitLab