Skip to content

Commit 5c48802

Browse files
committed
Merge branch 'main' of github.com:s-light/CircuitPython_nonblocking_serialinput into main
2 parents 170030c + 1c5c724 commit 5c48802

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nonblocking_serialinput.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ def _buffer_check_and_handle_line_ends(self):
128128
self.input_buffer = ""
129129

130130
def input(self):
131-
"""get oldest input string if there is any available. Otherwise None."""
131+
"""get oldest input string if there is any available. Otherwise an emtpy string."""
132132
try:
133133
result = self.input_list.pop(0)
134134
# print("result: {}".format(repr(result)))

0 commit comments

Comments
 (0)