Skip to content

Commit 4981a43

Browse files
Fix ruff
1 parent a1c5d8d commit 4981a43

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

batchflow/tests/detachable_test.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
import tempfile
1313

1414
import numpy as np
15-
import pytest
1615

1716

1817
def test_detachable_plot_with_detach():
@@ -54,5 +53,5 @@ def test_detachable_plot_without_detach():
5453
data = np.random.rand(10, 10)
5554
with tempfile.TemporaryDirectory() as tmpdir:
5655
savepath = os.path.join(tmpdir, "test_no_detach.png")
57-
p = Plot(data=data, mode="image", show=False, savepath=savepath)
56+
Plot(data=data, mode="image", show=False, savepath=savepath)
5857
assert os.path.exists(savepath)

0 commit comments

Comments
 (0)