From 7bf77fb5c39d1534b17bdf59e5efa5d3356b687c Mon Sep 17 00:00:00 2001 From: mpenning Date: Fri, 20 Oct 2023 08:47:58 -0500 Subject: [PATCH] Remove unused variable --- 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 78d452df..2baebc51 100644 --- a/ciscoconfparse/ccp_util.py +++ b/ciscoconfparse/ccp_util.py @@ -4136,7 +4136,7 @@ def remove(self, arg, debug=False): else: try: new_list = [ii for ii in list_before if result_type(ii) != arg] - except TypeError as eee: + except TypeError: if debug is True: error = "Found type mismatch: {arg}, {ii}" logger.debug(error)