Apply formatting

This commit is contained in:
Ivan Kravets
2020-04-26 12:58:05 +03:00
parent 51ec94f78c
commit 560699fc6b
2 changed files with 2 additions and 5 deletions

View File

@@ -221,10 +221,7 @@ class PvsStudioCheckTool(CheckToolBase): # pylint: disable=too-many-instance-at
result = proc.exec_command(cmd) result = proc.exec_command(cmd)
# pylint: disable=unsupported-membership-test # pylint: disable=unsupported-membership-test
if ( if result["returncode"] != 0 or "license" in result["err"].lower():
result["returncode"] != 0
or "license" in result["err"].lower()
):
self._bad_input = True self._bad_input = True
click.echo(result["err"]) click.echo(result["err"])
continue continue

View File

@@ -13,8 +13,8 @@
# limitations under the License. # limitations under the License.
import json import json
from os.path import isfile, join
import sys import sys
from os.path import isfile, join
import pytest import pytest