forked from platformio/platformio-core
PyLint fix
This commit is contained in:
2
Makefile
2
Makefile
@ -1,6 +1,6 @@
|
||||
lint:
|
||||
pylint --rcfile=./.pylintrc ./platformio
|
||||
pylint --rcfile=./.pylintrc ./tests
|
||||
pylint --rcfile=./.pylintrc ./platformio
|
||||
|
||||
isort:
|
||||
isort ./platformio
|
||||
|
@ -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"))
|
||||
|
Reference in New Issue
Block a user