forked from platformio/platformio-core
Pylint fix
This commit is contained in:
@ -54,13 +54,11 @@ class PvsStudioCheckTool(CheckToolBase): # pylint: disable=too-many-instance-at
|
|||||||
|
|
||||||
def tool_output_filter(self, line): # pylint: disable=arguments-differ
|
def tool_output_filter(self, line): # pylint: disable=arguments-differ
|
||||||
if any(
|
if any(
|
||||||
[
|
err_msg in line.lower()
|
||||||
err_msg in line.lower()
|
for err_msg in (
|
||||||
for err_msg in (
|
"license was not entered",
|
||||||
"license was not entered",
|
"license information is incorrect",
|
||||||
"license information is incorrect",
|
)
|
||||||
)
|
|
||||||
]
|
|
||||||
):
|
):
|
||||||
self._bad_input = True
|
self._bad_input = True
|
||||||
return line
|
return line
|
||||||
|
Reference in New Issue
Block a user