Skip to content

Commit 1597ac5

Browse files
committed
merge
2 parents abbc468 + d6464f7 commit 1597ac5

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -405,7 +405,7 @@ def __new__(cls, clsname, superclasses, attributedict):
405405
return super().__new__(cls, clsname, superclasses, attributedict)
406406

407407

408-
class PlotTester(ABC): # noqa: B024
408+
class PlotTester(ABC):
409409
@classmethod
410410
def compare(cls, basename: str, tolerance: float | None = None):
411411
ACTUAL.mkdir(parents=True, exist_ok=True)

tests/pl/test_get_extent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
from spatialdata.models import PointsModel, ShapesModel
1111
from spatialdata.transformations import Affine, set_transformation
1212

13-
import spatialdata_plot # noqa: F401
13+
import spatialdata_plot
1414
from tests.conftest import DPI, PlotTester, PlotTesterMeta
1515

1616
sc.pl.set_rcParams_defaults()

tests/pl/test_render_images.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from spatial_image import to_spatial_image
66
from spatialdata import SpatialData
77

8-
import spatialdata_plot # noqa: F401
8+
import spatialdata_plot
99
from tests.conftest import DPI, PlotTester, PlotTesterMeta, _viridis_with_under_over
1010

1111
sc.pl.set_rcParams_defaults()

tests/pl/test_render_labels.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
from spatialdata import SpatialData, deepcopy, get_element_instances
1111
from spatialdata.models import Labels2DModel, TableModel
1212

13-
import spatialdata_plot # noqa: F401
13+
import spatialdata_plot
1414
from tests.conftest import DPI, PlotTester, PlotTesterMeta, _viridis_with_under_over, get_standard_RNG
1515

1616
sc.pl.set_rcParams_defaults()

tests/pl/test_render_points.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
)
2222
from spatialdata.transformations._utils import _set_transformations
2323

24-
import spatialdata_plot # noqa: F401
24+
import spatialdata_plot
2525
from tests.conftest import DPI, PlotTester, PlotTesterMeta, _viridis_with_under_over, get_standard_RNG
2626

2727
sc.pl.set_rcParams_defaults()

tests/pl/test_render_shapes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
from spatialdata.transformations import Affine, Identity, MapAxis, Scale, Sequence, Translation
1717
from spatialdata.transformations._utils import _set_transformations
1818

19-
import spatialdata_plot # noqa: F401
19+
import spatialdata_plot
2020
from tests.conftest import DPI, PlotTester, PlotTesterMeta, _viridis_with_under_over, get_standard_RNG
2121

2222
sc.pl.set_rcParams_defaults()

tests/pl/test_show.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import scanpy as sc
33
from spatialdata import SpatialData
44

5-
import spatialdata_plot # noqa: F401
5+
import spatialdata_plot
66
from tests.conftest import DPI, PlotTester, PlotTesterMeta
77

88
sc.pl.set_rcParams_defaults()

tests/pl/test_upstream_plots.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
set_transformation,
1414
)
1515

16-
import spatialdata_plot # noqa: F401
16+
import spatialdata_plot
1717
from tests.conftest import DPI, PlotTester, PlotTesterMeta
1818

1919
# sc.pl.set_rcParams_defaults()

0 commit comments

Comments
 (0)