Skip to content

Commit 92561bb

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 35d2246 commit 92561bb

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

src/napari_clusters_plotter/_sample_data.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,9 @@ def cells3d_curvatures() -> List["LayerData"]: # noqa: F821
7878
(vertices, faces),
7979
{
8080
"name": "cells_3d_heat_kernel_signature",
81-
'features': hks,},
82-
"surface",
81+
"features": hks,
82+
},
83+
"surface",
8384
]
8485

8586
layer_data_nuclei = (
@@ -91,4 +92,4 @@ def cells3d_curvatures() -> List["LayerData"]: # noqa: F821
9192
"image",
9293
)
9394

94-
return [layer_data_nuclei, layer_data_surface]
95+
return [layer_data_nuclei, layer_data_surface]

src/napari_clusters_plotter/_tests/test_sample_data.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
import pytest
2-
from napari_clusters_plotter ._sample_data import (
2+
3+
from napari_clusters_plotter._sample_data import (
34
bbbc_1_dataset,
4-
cells3d_curvatures
5+
cells3d_curvatures,
56
)
67

8+
79
@pytest.mark.parametrize(
810
"sample_data_function",
911
[
1012
bbbc_1_dataset,
1113
cells3d_curvatures,
12-
]
14+
],
1315
)
1416
def test_bbbc_1_sample_data(make_napari_viewer, sample_data_function):
1517
from napari.layers import Layer
1618

17-
import napari_clusters_plotter as ncp
18-
1919
viewer = make_napari_viewer()
2020

2121
sample_dataset = sample_data_function()

0 commit comments

Comments
 (0)