Skip to content

Commit e7f4d8b

Browse files
committed
Use a more generic dtype to make linter happy for now
1 parent d36a9ee commit e7f4d8b

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/pytest_split/ipynb_compatibility.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,10 @@
33
if TYPE_CHECKING:
44
from typing import List
55

6-
from _pytest import nodes
7-
86
from pytest_split.algorithms import TestGroup
97

108

11-
def ensure_ipynb_compatibility(group: "TestGroup", items: "List[nodes.Item]") -> None:
9+
def ensure_ipynb_compatibility(group: "TestGroup", items: list) -> None:
1210
"""
1311
Ensures that group doesn't contain partial IPy notebook cells.
1412

0 commit comments

Comments
 (0)