Commit 7d8e8d56 by Alexander Popov

Fix pylint E1101: Instance of 'OptCheck' has no 'type' member

parent 1d054d2c
...@@ -57,6 +57,10 @@ class OptCheck: ...@@ -57,6 +57,10 @@ class OptCheck:
self.state = None self.state = None
self.result = None self.result = None
@property
def type(self):
return None
def check(self): def check(self):
# handle the 'is present' check # handle the 'is present' check
if self.expected == 'is present': if self.expected == 'is present':
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment