From f554237397ac8b7be22baf155b5c6b4c533dc92c Mon Sep 17 00:00:00 2001 From: mpenning Date: Thu, 12 Oct 2023 22:35:33 -0500 Subject: [PATCH] Remove hard-coded debugging --- ciscoconfparse/ccp_util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ciscoconfparse/ccp_util.py b/ciscoconfparse/ccp_util.py index f6f9297b..5f17cba2 100644 --- a/ciscoconfparse/ccp_util.py +++ b/ciscoconfparse/ccp_util.py @@ -3150,7 +3150,7 @@ def number(self, value): logger.critical(f"{value}") self._number = value - def update_state(self, debug=True): + def update_state(self, debug=False): "Rewrite the state of this object; call this when any digit changes." if (self.slot is None) and (self.card is None) and isinstance(self.port, (int, str)): self._number_list[-1] = int(self._port)