Repository URL to install this package:
|
Version:
2.4.4 ▾
|
aiohappyeyeballs
/
types.py
|
|---|
"""Types for aiohappyeyeballs."""
import socket
from typing import Tuple, Union
AddrInfoType = Tuple[
Union[int, socket.AddressFamily],
Union[int, socket.SocketKind],
int,
str,
Tuple, # type: ignore[type-arg]
]