Skip to content

Commit 61cc16d

Browse files
committed
fix(pytest_plugin): Fix typing
1 parent b0a86fa commit 61cc16d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/libvcs/pytest_plugin.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
import pytest
1111

1212
from _pytest.doctest import DoctestItem
13-
from _pytest.fixtures import SubRequest
1413

1514
from libvcs._internal.run import run
1615
from libvcs.sync.git import GitRemote, GitSync
@@ -410,7 +409,7 @@ def svn_repo(projects_path: pathlib.Path, svn_remote_repo: pathlib.Path) -> SvnS
410409

411410
@pytest.fixture
412411
def add_doctest_fixtures(
413-
request: SubRequest,
412+
request: pytest.FixtureRequest,
414413
doctest_namespace: dict[str, Any],
415414
tmp_path: pathlib.Path,
416415
set_home: pathlib.Path,

0 commit comments

Comments
 (0)