Skip to content

Commit 2ef3058

Browse files
author
Martin Durant
committed
flake
1 parent b54402f commit 2ef3058

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

streamz/dataframe/core.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,8 @@ def verify(self, x):
344344
@property
345345
def plot(self):
346346
try:
347-
import hvplot.streamz
347+
# import has side-effect of attaching .hvplot attribute
348+
import hvplot.streamz # # noqa: F401
348349
except ImportError as err: # pragma: no cover
349350
raise ImportError("Streamz dataframe plotting requires hvplot") from err
350351
return self.hvplot

0 commit comments

Comments
 (0)