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)
# pylint: disable=unsupported-membership-test
if (
result["returncode"] != 0
or "license" in result["err"].lower()
):
if result["returncode"] != 0 or "license" in result["err"].lower():
self._bad_input = True
click.echo(result["err"])
continue

View File

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