Stop pylint whining about unexpected keyword argument.

This commit is contained in:
Vegard Berg 2022-08-04 04:34:19 +02:00
parent 847d5c8c89
commit 2cc865100d
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ argument-naming-style = "snake_case"
attr-naming-style = "snake_case"
[tool.pylint."messages control"]
disable = ["C0103", "C0114", "C0115", "C0116", "R0903", "R0913"]
disable = ["C0103", "C0114", "C0115", "C0116", "R0903", "R0913", "E1123"]
[build-system]
requires = ["poetry-core>=1.0.0"]