We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51e52b8 commit 11d4250Copy full SHA for 11d4250
src/_pytest/config/findpaths.py
@@ -1,5 +1,6 @@
1
import os
2
from typing import Dict
3
+from typing import Iterable
4
from typing import List
5
from typing import Optional
6
from typing import Tuple
@@ -22,7 +23,7 @@ def exists(path, ignore=EnvironmentError):
22
23
24
25
def getcfg(
- args: List[py.path.local], config: Optional[Config] = None
26
+ args: Iterable[py.path.local], config: Optional[Config] = None
27
) -> Tuple[
28
Optional[py.path.local],
29
0 commit comments