PyLint fix

This commit is contained in:
Ivan Kravets
2023-02-02 19:35:40 +02:00
parent c785c8c6f3
commit efbe3d4aa6
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
lint:
pylint --rcfile=./.pylintrc ./platformio
pylint --rcfile=./.pylintrc ./tests
pylint --rcfile=./.pylintrc ./platformio
isort:
isort ./platformio

View File

@ -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"))