Skip to content

Commit be6c01b

Browse files
author
Martin Durant
committed
lint
1 parent 1e57c63 commit be6c01b

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

streamz/collection.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ def stop(self):
240240

241241
def _ipython_display_(self, **kwargs):
242242
try:
243-
from ipywidgets import Output
243+
from ipywidgets import Output # noqa: F401
244244
return self.stream.latest().rate_limit(
245245
0.5).gather()._ipython_display_(**kwargs)
246246
except ImportError:

streamz/core.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
from __future__ import absolute_import, division, print_function
2-
import asyncio
32
from collections import deque, defaultdict
43
from datetime import timedelta
54
import functools

0 commit comments

Comments
 (0)