Skip to content

Commit b867949

Browse files
committed
update main.py - allow semicolon separation
1 parent 220be8a commit b867949

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

micropython/main.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,5 @@
3131
while True:
3232
line = gets().strip()
3333
if len(line) > 0:
34-
pico.parse_and_process(line)
34+
for _line in line.split(";"):
35+
pico.parse_and_process(_line)

0 commit comments

Comments
 (0)