Skip to content

Commit 0684b3f

Browse files
committed
Lint
1 parent 79c8fe6 commit 0684b3f

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

tests/test_streams.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
import pytest
2-
import pandas as pd
32
from imageio.v3 import improps
43

4+
from streamjoy.models import Paused
55
from streamjoy.streams import GifStream, Mp4Stream
66
from streamjoy.wrappers import wrap_matplotlib
7-
from streamjoy.models import Paused
87

98

109
class AbstractTestMediaStream:
@@ -47,6 +46,7 @@ def test_from_directory(self, stream_cls, data_dir):
4746
sj = stream_cls.from_directory(data_dir, pattern="*.png")
4847
self._assert_stream_and_props(sj, stream_cls)
4948

49+
5050
class TestGifStream(AbstractTestMediaStream):
5151
@pytest.fixture(scope="class")
5252
def stream_cls(self):
@@ -61,6 +61,7 @@ def renderer(df, groupby=None): # TODO: fix bug groupby not needed
6161
props = improps(buf)
6262
assert props.n_images == 3
6363

64+
6465
class TestMp4Stream(AbstractTestMediaStream):
6566
@pytest.fixture(scope="class")
6667
def stream_cls(self):

0 commit comments

Comments
 (0)