summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPax <13646646+paxcodes@users.noreply.github.com>2021-02-05 12:03:58 -0800
committerGitHub <noreply@github.com>2021-02-05 22:03:58 +0200
commitbcfe253f5b5367d8537e011e3a9e56bae220d411 (patch)
tree630155bd2590cf10b8550bab8bd1f4e45b7a72d2 /src
parent150bdceb7ac073800a3dff2fe6a017c61992b46f (diff)
downloadpytest-bcfe253f5b5367d8537e011e3a9e56bae220d411.tar.gz
Type annotation for request.param (#8319)
Diffstat (limited to 'src')
-rw-r--r--src/_pytest/fixtures.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/_pytest/fixtures.py b/src/_pytest/fixtures.py
index 269369642..6a57fffd1 100644
--- a/src/_pytest/fixtures.py
+++ b/src/_pytest/fixtures.py
@@ -758,7 +758,7 @@ class SubRequest(FixtureRequest):
self,
request: "FixtureRequest",
scope: "_Scope",
- param,
+ param: Any,
param_index: int,
fixturedef: "FixtureDef[object]",
*,