From f48e2bc2bf773bf0dc937cd787a6f03510947cd8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dani=C3=ABl=20van=20Noord?= <13665637+DanielNoord@users.noreply.github.com> Date: Fri, 1 Apr 2022 22:05:57 +0200 Subject: Add documentation for messages with arguments in their name (#5962) Co-authored-by: Vladyslav Krylasov Co-authored-by: Pierre Sassoulas --- doc/data/messages/t/too-many-arguments/bad.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 doc/data/messages/t/too-many-arguments/bad.py (limited to 'doc/data/messages/t/too-many-arguments/bad.py') 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 -- cgit v1.2.1