From fa57d8b225d289997d7d019ab32252040efab4d6 Mon Sep 17 00:00:00 2001 From: Alexander Popov Date: Sun, 2 Apr 2023 14:27:58 +0300 Subject: [PATCH] engine: remove the unused 'type' property from the OptCheck object --- kconfig_hardened_check/engine.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/kconfig_hardened_check/engine.py b/kconfig_hardened_check/engine.py index bd73ec1..e88781e 100644 --- a/kconfig_hardened_check/engine.py +++ b/kconfig_hardened_check/engine.py @@ -45,10 +45,6 @@ class OptCheck: self.state = None self.result = None - @property - def type(self): - return None - def check(self): # handle the 'is present' check if self.expected == 'is present': -- 2.31.1