From 852f77559f0a92442b201f1317e56aa93e0ea4c6 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..f5d66368b036 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: