mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-20 19:01:15 +08:00
* imaplib: Fix annotation for search. https://docs.python.org/3/library/imaplib.html#imaplib.IMAP4.search shows that IMAP4.search takes a number of str args, not a number of List[str] args (I can see how one would be confused, though, because of the *criteria). * imaplib: Fix annotation for store. While it's called "flag_list", https://docs.python.org/3/library/imaplib.html#imaplib.IMAP4.store clearly shows it's expecting a string with a list of flags in it, not a Python list.