Remove trailing space

This commit is contained in:
Scott Shawcroft 2020-07-02 15:11:40 -07:00 committed by GitHub
parent c33542f978
commit 70fdde4aaa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -202,7 +202,7 @@ STATIC MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN(busio_uart___exit___obj, 4, 4, busio_
//| def readline(self, ) -> Any:
//| """Read a line, ending in a newline character, or
//| return None if a timeout occurs sooner, or
//| return everything readable if no newline is found and timeout=0
//| return everything readable if no newline is found and timeout=0
//|
//| :return: the line read
//| :rtype: bytes or None"""