Skip to content

Commit 7ef66bc

Browse files
committed
types
1 parent 4be616a commit 7ef66bc

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/pytest-simcore/src/pytest_simcore/helpers/monkeypatch_envs.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"""
44

55
import os
6+
from collections.abc import Mapping
67
from io import StringIO
78
from pathlib import Path
89

@@ -17,7 +18,7 @@
1718

1819

1920
def setenvs_from_dict(
20-
monkeypatch: pytest.MonkeyPatch, envs: dict[str, str | bool]
21+
monkeypatch: pytest.MonkeyPatch, envs: Mapping[str, str | bool]
2122
) -> EnvVarsDict:
2223
env_vars = {}
2324

0 commit comments

Comments
 (0)