Skip to content

Commit 0573c6f

Browse files
committed
Fix typing issue
1 parent 6fe8e40 commit 0573c6f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pytest_bdd/compat.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def inject_fixture(request: FixtureRequest, arg: str, value: Any) -> None:
3434
# if there was already one registered, so we need to force its value
3535
# to the one we want to inject.
3636
fixture_def = request._get_active_fixturedef(arg)
37-
fixture_def.cached_result = (value, None, None)
37+
fixture_def.cached_result = (value, None, None) # type: ignore
3838

3939
else:
4040

0 commit comments

Comments
 (0)