socket.AddressFamily: Fix AF_LINK (#8103)

Slipped through the net in #8099
This commit is contained in:
Alex Waygood
2022-06-19 09:10:33 +01:00
committed by GitHub
parent a9cd83adf9
commit 411d85feeb

View File

@@ -424,7 +424,7 @@ class AddressFamily(IntEnum):
AF_VSOCK: int
if sys.version_info >= (3, 8):
AF_QIPCRTR: int
AF_LINK: AddressFamily # availability: BSD, macOS
AF_LINK: int # availability: BSD, macOS
if sys.platform != "darwin":
AF_BLUETOOTH: int