diff options
author | Daniƫl van Noord <13665637+DanielNoord@users.noreply.github.com> | 2022-04-01 22:05:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-01 22:05:57 +0200 |
commit | f48e2bc2bf773bf0dc937cd787a6f03510947cd8 (patch) | |
tree | 8dda6344214367d1a4e54a875dac4638edb7d23d /doc/data/messages/t/too-many-arguments/bad.py | |
parent | fb48293cb99413cf31df46139b139c096bc94bb3 (diff) | |
download | pylint-git-f48e2bc2bf773bf0dc937cd787a6f03510947cd8.tar.gz |
Add documentation for messages with arguments in their name (#5962)
Co-authored-by: Vladyslav Krylasov <vladyslav.krylasov@gmail.com>
Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com>
Diffstat (limited to 'doc/data/messages/t/too-many-arguments/bad.py')
-rw-r--r-- | doc/data/messages/t/too-many-arguments/bad.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/doc/data/messages/t/too-many-arguments/bad.py b/doc/data/messages/t/too-many-arguments/bad.py new file mode 100644 index 000000000..5f8d6e0b0 --- /dev/null +++ b/doc/data/messages/t/too-many-arguments/bad.py @@ -0,0 +1,16 @@ +def three_d_chess_move( # [too-many-arguments] + x_white, + y_white, + z_white, + piece_white, + x_black, + y_black, + z_black, + piece_black, + x_blue, + y_blue, + z_blue, + piece_blue, + current_player, +): + pass |