summaryrefslogtreecommitdiff
path: root/doc/user_guide
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2023-02-01 10:34:04 +0100
committerPierre Sassoulas <pierre.sassoulas@gmail.com>2023-02-01 11:50:49 +0100
commitdcb0198d164b7f4306f60d854a6bd97ff65a62a4 (patch)
treead9065cb1629f54c943962c70f51baacecad6fcc /doc/user_guide
parent77e562cd8c3e04c2b2a4267e740864b7793028e5 (diff)
downloadpylint-git-dcb0198d164b7f4306f60d854a6bd97ff65a62a4.tar.gz
Bump pylint to 2.16.0, update changelogv2.16.0
Diffstat (limited to 'doc/user_guide')
-rw-r--r--doc/user_guide/checkers/features.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/user_guide/checkers/features.rst b/doc/user_guide/checkers/features.rst
index 104b8b40e..1ebf5ca53 100644
--- a/doc/user_guide/checkers/features.rst
+++ b/doc/user_guide/checkers/features.rst
@@ -643,7 +643,7 @@ See also :ref:`method_args checker's options' documentation <method_args-options
Method Args checker Messages
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-:positional-only-arguments-expected (E3102): *%s() got some positional-only arguments passed as keyword arguments: %s*
+:positional-only-arguments-expected (E3102): *`%s()` got some positional-only arguments passed as keyword arguments: %s*
Emitted when positional-only arguments have been passed as keyword arguments.
Remove the keywords for the affected arguments in the function call. This
message can't be emitted when using Python < 3.8.