From efbe3d4aa67db1997ab9b763bf9658ad0639abd7 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Thu, 2 Feb 2023 19:35:40 +0200 Subject: [PATCH] PyLint fix --- Makefile | 2 +- tests/package/test_manifest.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 027af3ca..09c0b838 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ lint: - pylint --rcfile=./.pylintrc ./platformio pylint --rcfile=./.pylintrc ./tests + pylint --rcfile=./.pylintrc ./platformio isort: isort ./platformio diff --git a/tests/package/test_manifest.py b/tests/package/test_manifest.py index 828412f4..a3279e05 100644 --- a/tests/package/test_manifest.py +++ b/tests/package/test_manifest.py @@ -901,5 +901,5 @@ def test_broken_schemas(): ) # invalid package name - with pytest.raises(ManifestValidationError, match=("are not allowed")): + with pytest.raises(ManifestValidationError, match="are not allowed"): ManifestSchema().load_manifest(dict(name="C/C++ :library", version="1.2.3"))