Skip to content

Commit 08ee5d0

Browse files
committed
Remove conftest typing
1 parent f5f74f1 commit 08ee5d0

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

Diff for: src/napari_matplotlib/tests/conftest.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
import os
22
from pathlib import Path
3-
from typing import Any, Dict, Tuple
43

54
import numpy as np
6-
import numpy.typing as npt
75
import pytest
86
from skimage import data
97

@@ -20,7 +18,7 @@ def image_data(request):
2018

2119

2220
@pytest.fixture
23-
def astronaut_data() -> Tuple[npt.NDArray[Any], Dict[Any, Any]]:
21+
def astronaut_data():
2422
return data.astronaut(), {"rgb": True}
2523

2624

0 commit comments

Comments
 (0)