fix(examples) join usage (#2425)

Use 'join' correctly on Python scripts
This commit is contained in:
Amir Gonnen
2021-08-02 12:56:44 +03:00
committed by GitHub
parent 65415d3f68
commit 4bdeb756da
3 changed files with 21 additions and 21 deletions

View File

@@ -3,11 +3,11 @@
#
opts = "\n".join([
"Apple\n"
"Banana\n"
"Orange\n"
"Melon\n"
"Grape\n"
"Apple",
"Banana",
"Orange",
"Melon",
"Grape",
"Raspberry"])
dd = lv.dropdown(lv.scr_act())