diff options
author | Mark Byrne <31762852+mbyrnepr2@users.noreply.github.com> | 2022-05-18 09:31:39 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-18 09:31:39 +0200 |
commit | fddaeebae0d21e192da210d13b75e06042953572 (patch) | |
tree | f52f00e814aa7a9d8d9960dcc14a708b5ed32d9d /doc/data/messages/c/consider-using-join/good.py | |
parent | 5fa3386272f8776b4f8ed87d38b94a6cf3cd29bd (diff) | |
download | pylint-git-fddaeebae0d21e192da210d13b75e06042953572.tar.gz |
Add documentation examples for `consider-using-join`. (#6637)
Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com>
Diffstat (limited to 'doc/data/messages/c/consider-using-join/good.py')
-rw-r--r-- | doc/data/messages/c/consider-using-join/good.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/data/messages/c/consider-using-join/good.py b/doc/data/messages/c/consider-using-join/good.py new file mode 100644 index 000000000..1ee43ed6b --- /dev/null +++ b/doc/data/messages/c/consider-using-join/good.py @@ -0,0 +1 @@ +print("".join(["apple", "pear", "peach"])) |