Disable pylint for broken code.

This commit is contained in:
Andrey Rakhmatullin 2023-07-17 00:09:24 +04:00
parent 187e8f9a2d
commit 043a24410b
1 changed files with 1 additions and 1 deletions

View File

@ -206,7 +206,7 @@ class BaseSettingsTest(unittest.TestCase):
)
def test_update_kwargs(self):
settings = BaseSettings({"key": 0})
settings.update(key=1)
settings.update(key=1) # pylint: disable=unexpected-keyword-arg
@pytest.mark.xfail(
raises=AttributeError,