From e0e678597f679b94d02e49e0b85f9c8828b11b3e Mon Sep 17 00:00:00 2001 From: Chris Jones Date: Wed, 2 Mar 2022 11:02:40 -0600 Subject: [PATCH] Removed printout Co-authored-by: Matti Kortelainen --- FWCore/ParameterSet/python/Mixins.py | 1 - 1 file changed, 1 deletion(-) diff --git a/FWCore/ParameterSet/python/Mixins.py b/FWCore/ParameterSet/python/Mixins.py index 32e1602eb4f1f..6f4eef29e3608 100644 --- a/FWCore/ParameterSet/python/Mixins.py +++ b/FWCore/ParameterSet/python/Mixins.py @@ -219,7 +219,6 @@ def getParameter(self, params): return getattr(self, params, None) for param in params: lastParam = getattr(lastParam, param, None) - #print(str(lastParam)) if lastParam == None: return None return lastParam