Skip to content

Commit

Permalink
imaplib: Avoid an unnecessary Any in CommandResults (#3654)
Browse files Browse the repository at this point in the history
  • Loading branch information
dkg committed Jan 24, 2020
1 parent d5851ec commit 852f775
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stdlib/2and3/imaplib.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 852f775

Please sign in to comment.