From c5a98377843b37127ff4a069fa84b2562949b9df Mon Sep 17 00:00:00 2001 From: Joe Rickerby Date: Sun, 19 Jul 2020 19:46:40 +0100 Subject: [PATCH] Update cibuildwheel/bashlex_eval.py --- cibuildwheel/bashlex_eval.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cibuildwheel/bashlex_eval.py b/cibuildwheel/bashlex_eval.py index 8461d4c8..2c61bc54 100644 --- a/cibuildwheel/bashlex_eval.py +++ b/cibuildwheel/bashlex_eval.py @@ -3,7 +3,7 @@ from typing import Callable, Dict, List, NamedTuple, Optional, Sequence import bashlex # type: ignore -# a function that takes a shell command and the environment, and returns the result +# a function that takes a command and the environment, and returns the result EnvironmentExecutor = Callable[[List[str], Dict[str, str]], str]