summaryrefslogtreecommitdiff
path: root/doc/data/messages/c/consider-using-join/bad.py
diff options
context:
space:
mode:
Diffstat (limited to 'doc/data/messages/c/consider-using-join/bad.py')
-rw-r--r--doc/data/messages/c/consider-using-join/bad.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/data/messages/c/consider-using-join/bad.py b/doc/data/messages/c/consider-using-join/bad.py
index c77b6f767..5d5a32fb7 100644
--- a/doc/data/messages/c/consider-using-join/bad.py
+++ b/doc/data/messages/c/consider-using-join/bad.py
@@ -4,4 +4,5 @@ def fruits_to_string(fruits):
formatted_fruit += fruit # [consider-using-join]
return formatted_fruit
+
print(fruits_to_string(["apple", "pear", "peach"]))