diff options
Diffstat (limited to 'pre_commit/envcontext.py')
-rw-r--r-- | pre_commit/envcontext.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pre_commit/envcontext.py b/pre_commit/envcontext.py index 1f816ce..d4d2411 100644 --- a/pre_commit/envcontext.py +++ b/pre_commit/envcontext.py @@ -33,7 +33,7 @@ def format_env(parts: SubstitutionT, env: MutableMapping[str, str]) -> str: def envcontext( patch: PatchesT, _env: MutableMapping[str, str] | None = None, -) -> Generator[None, None, None]: +) -> Generator[None]: """In this context, `os.environ` is modified according to `patch`. `patch` is an iterable of 2-tuples (key, value): |