From 3725843440274532692ff5960131cc38f79c967d Mon Sep 17 00:00:00 2001 From: Daniel Kahn Gillmor Date: Fri, 24 Jan 2020 16:46:06 -0500 Subject: [PATCH] imaplib: Avoid an unnecessary `Any` in CommandResults (#3654) --- stdlib/2and3/imaplib.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stdlib/2and3/imaplib.pyi b/stdlib/2and3/imaplib.pyi index 07f770dfb3ce..1ed72e511bd7 100644 --- a/stdlib/2and3/imaplib.pyi +++ b/stdlib/2and3/imaplib.pyi @@ -8,7 +8,7 @@ from socket import socket as _socket from ssl import SSLSocket, SSLContext from typing import Any, Callable, Dict, IO, List, Optional, Pattern, Text, Tuple, Type, Union -CommandResults = Tuple[str, List[Any]] +CommandResults = Tuple[str, List[Union[bytes, Tuple[bytes, bytes]]]] class IMAP4: