From 1936773d5b5fad263e01815cfb7ab30b3e3defc8 Mon Sep 17 00:00:00 2001 From: mpenning Date: Sun, 15 Oct 2023 21:42:28 -0500 Subject: [PATCH] Remove NotImplementedError() --- ciscoconfparse/ccp_abc.py | 1 - 1 file changed, 1 deletion(-) diff --git a/ciscoconfparse/ccp_abc.py b/ciscoconfparse/ccp_abc.py index 199f6b39..d8ed78f0 100644 --- a/ciscoconfparse/ccp_abc.py +++ b/ciscoconfparse/ccp_abc.py @@ -162,7 +162,6 @@ def calculate_line_id(self): # I am keeping this in calculate_line_id() to document the # proposal and why I decided against it. ################################################################## - raise NotImplementedError() indent_str = indent * " " if self.is_comment is False: _line_id = hash(indent_str + " ".join(self.text.strip().split()))