Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 31e0fb3

Browse files
committedJun 1, 2023
Make pre-commit happy
1 parent 44153c0 commit 31e0fb3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
 

‎src/napari_matplotlib/tests/conftest.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
import os
2+
from typing import Any, Dict
23

3-
from typing import Dict, Any
44
import numpy as np
55
import pytest
66
from skimage import data
77

88
DataMeta = Dict[np.ndarray, Dict[str, Any]]
99

10+
1011
@pytest.fixture(
1112
params=[
1213
((100, 100), {"rgb": False}),

‎src/napari_matplotlib/tests/helpers.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
from io import BytesIO
22

33
import numpy as np
4-
from matplotlib.figure import Figure
5-
64
import pytest
5+
from matplotlib.figure import Figure
76

87

98
def fig_to_array(fig: Figure) -> np.ndarray:

0 commit comments

Comments
 (0)
Please sign in to comment.