Skip to content

Commit 42883c8

Browse files
authored
Stop lying about the metaclass
1 parent 7732a6f commit 42883c8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

stdlib/asyncio/unix_events.pyi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import sys
22
import types
33
from _typeshed import Self
4-
from abc import ABCMeta, abstractmethod
4+
from abc import abstractmethod
55
from socket import socket
66
from typing import Any, Callable
77
from typing_extensions import Literal
@@ -57,7 +57,7 @@ if sys.platform != "win32":
5757
else:
5858
__all__ = ["SelectorEventLoop", "AbstractChildWatcher", "SafeChildWatcher", "FastChildWatcher", "DefaultEventLoopPolicy"]
5959

60-
class BaseChildWatcher(AbstractChildWatcher, metaclass=ABCMeta):
60+
class BaseChildWatcher(AbstractChildWatcher):
6161
def __init__(self) -> None: ...
6262
def close(self) -> None: ...
6363
if sys.version_info >= (3, 8):

0 commit comments

Comments
 (0)