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

@ -390,7 +390,10 @@ class InteractBase(object):
except:
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
"""