Skip to content

Commit 254f9ab

Browse files
committed
mypy is picky today
1 parent ea1eac8 commit 254f9ab

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

stdlib/_typeshed/__init__.pyi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,8 +167,8 @@ class SupportsGet(Protocol[_KT_contra, _VT_co]): # type: ignore[misc] # Covaria
167167
def get(self, key: _KT_contra, /) -> _VT_co | None: ...
168168
@overload
169169
def get(
170-
self, key: _KT_contra, default: _VT_co, /
171-
) -> _VT_co: ... # pyright: ignore[reportGeneralTypeIssues] # Covariant type as parameter
170+
self, key: _KT_contra, default: _VT_co, / # type: ignore[misc] # pyright: ignore[reportGeneralTypeIssues] # Covariant type as parameter
171+
) -> _VT_co: ...
172172
@overload
173173
def get(self, key: _KT_contra, default: _T, /) -> _VT_co | _T: ...
174174

0 commit comments

Comments
 (0)