We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 885838a + 8123715 commit 415d2a1Copy full SHA for 415d2a1
python/ipywidgets/ipywidgets/widgets/widget_output.py
@@ -111,7 +111,7 @@ def __enter__(self):
111
kernel = None
112
if ip and getattr(ip, "kernel", None) is not None:
113
kernel = ip.kernel
114
- elif self.comm is not None and getattr(self.comm, 'kernel', True) is not None:
+ elif self.comm is not None and getattr(self.comm, 'kernel', None) is not None:
115
kernel = self.comm.kernel
116
117
if kernel:
0 commit comments