Skip to content

Commit 58d8db3

Browse files
committed
Fix return type of __exit__ to bool
1 parent 6de7f12 commit 58d8db3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/pip/_internal/build_env.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ def __exit__(
222222
exc_val, # type: Optional[BaseException]
223223
exc_tb # type: Optional[TracebackType]
224224
):
225-
# type: (...) -> None
225+
# type: (...) -> bool
226226
pass
227227

228228
def cleanup(self):

0 commit comments

Comments
 (0)