canio: doc improvement -- don't needlessly call out deinit behavior

This commit is contained in:
Jeff Epler 2020-09-29 14:32:27 -05:00
parent 611f81ac1a
commit d79f4e2662
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@ STATIC mp_obj_t canio_listener_in_waiting(mp_obj_t self_in) {
STATIC MP_DEFINE_CONST_FUN_OBJ_1(canio_listener_in_waiting_obj, canio_listener_in_waiting);
//| def __iter__(self) -> Listener:
//| """Returns self, unless the object is deinitialized.
//| """Returns self
//|
//| This method exists so that `Listener` can be used as an
//| iterable"""