fix io.input_skip_pending for colab

This commit is contained in:
Colombo 2020-01-23 10:20:29 +04:00
parent 591bba2c1e
commit afcfa9c69e

View file

@ -391,6 +391,9 @@ class InteractBase(object):
pass pass
def input_skip_pending(self): def input_skip_pending(self):
if is_colab:
# currently it does not work on Colab
return
""" """
skips unnecessary inputs between the dialogs skips unnecessary inputs between the dialogs
""" """