Skip to content

Commit 1e9f6a7

Browse files
committed
Fix type annotation for pytest 6.2
1 parent ed65e88 commit 1e9f6a7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/xdist/looponfail.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def pytest_cmdline_main(config):
4444
return 2 # looponfail only can get stop with ctrl-C anyway
4545

4646

47-
def looponfail_main(config: pytest.Config) -> None:
47+
def looponfail_main(config: "pytest.Config") -> None:
4848
remotecontrol = RemoteControl(config)
4949
config_roots = config.getini("looponfailroots")
5050
if not config_roots:

0 commit comments

Comments
 (0)