Remove typevar in mock.patch.multiple (#6090)

This commit is contained in:
Matthew Suozzo
2021-09-30 13:14:10 -04:00
committed by GitHub
parent 62f27cf6b8
commit 947e851cf8

View File

@@ -320,8 +320,8 @@ class _patcher:
spec_set: Any | None = ...,
autospec: Any | None = ...,
new_callable: Any | None = ...,
**kwargs: _T,
) -> _patch[_T]: ...
**kwargs: Any,
) -> _patch[Any]: ...
def stopall(self) -> None: ...
patch: _patcher