From 4e42421ebf2938bfac01e271afb195c2323566fd Mon Sep 17 00:00:00 2001 From: Ran Benita Date: Sun, 23 Jul 2023 13:54:03 +0300 Subject: [PATCH] config: fix an incorrect type Was a mistake in d97d44a97af2303eb3f3aea1f16fd834f5415509. --- src/_pytest/config/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/_pytest/config/__init__.py b/src/_pytest/config/__init__.py index 1f4670a56..88b23f1a4 100644 --- a/src/_pytest/config/__init__.py +++ b/src/_pytest/config/__init__.py @@ -1243,7 +1243,7 @@ class Config: self, *, args: List[str], - pyargs: List[str], + pyargs: bool, testpaths: List[str], invocation_dir: Path, rootpath: Path,