Found via `codespell -q 3 -L alo,asend,ba,nams,spawnve`
This commit is contained in:
luzpaz
2021-11-08 21:23:15 -05:00
committed by GitHub
parent 6e646f43dd
commit b95b729b9e
10 changed files with 17 additions and 17 deletions

View File

@@ -121,7 +121,7 @@ class type(object):
def __new__(cls, name: str, bases: Tuple[type, ...], namespace: Dict[str, Any]) -> type: ...
def __call__(self, *args: Any, **kwds: Any) -> Any: ...
def __subclasses__(self: _TT) -> List[_TT]: ...
# Note: the documentation doesnt specify what the return type is, the standard
# Note: the documentation doesn't specify what the return type is, the standard
# implementation seems to be returning a list.
def mro(self) -> List[type]: ...
def __instancecheck__(self, instance: Any) -> bool: ...