We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e57c63 commit be6c01bCopy full SHA for be6c01b
2 files changed
streamz/collection.py
@@ -240,7 +240,7 @@ def stop(self):
240
241
def _ipython_display_(self, **kwargs):
242
try:
243
- from ipywidgets import Output
+ from ipywidgets import Output # noqa: F401
244
return self.stream.latest().rate_limit(
245
0.5).gather()._ipython_display_(**kwargs)
246
except ImportError:
streamz/core.py
@@ -1,5 +1,4 @@
1
from __future__ import absolute_import, division, print_function
2
-import asyncio
3
from collections import deque, defaultdict
4
from datetime import timedelta
5
import functools
0 commit comments