From afcfa9c69eb14f1927e4b9248d1e00ff71cdc806 Mon Sep 17 00:00:00 2001 From: Colombo Date: Thu, 23 Jan 2020 10:20:29 +0400 Subject: [PATCH] fix io.input_skip_pending for colab --- core/interact/interact.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/core/interact/interact.py b/core/interact/interact.py index 2f64cf4..b6d8d7a 100644 --- a/core/interact/interact.py +++ b/core/interact/interact.py @@ -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 """