mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 20:54:28 +08:00
Switch usages of mypy_extensions.NoReturn over to typing.NoReturn. (#1942)
* Change mypy_extensions.NoReturn to typing.NoReturn everywhere.
This commit is contained in:
@@ -1,10 +1,12 @@
|
||||
# Stubs for poplib (Python 2 and 3)
|
||||
|
||||
from mypy_extensions import NoReturn
|
||||
import socket
|
||||
import ssl
|
||||
import sys
|
||||
from typing import Any, BinaryIO, Dict, List, Optional, overload, Pattern, Text, Tuple
|
||||
from typing import (
|
||||
Any, BinaryIO, Dict, List, NoReturn, Optional, overload, Pattern, Text,
|
||||
Tuple,
|
||||
)
|
||||
|
||||
_LongResp = Tuple[bytes, List[bytes], int]
|
||||
|
||||
|
||||
Reference in New Issue
Block a user