Skip to content

Commit 378b337

Browse files
authored
Merge branch 'main' into like-protos
2 parents 7e3c420 + dd1c50e commit 378b337

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/mypy_primer_comment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: mypy_primer (comment)
33
on:
44
workflow_run:
55
workflows:
6-
- Run mypy_primer
6+
- mypy_primer
77
types:
88
- completed
99

stdlib/_typeshed/__init__.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ class SupportsGet(Protocol[_KT_contra, _VT_co]): # type: ignore[misc] # Covaria
185185
@overload
186186
def get(self, key: _KT_contra, /) -> _VT_co | None: ...
187187
@overload
188-
def get(
188+
def get( # pyrefly: ignore[invalid-variance]
189189
self, key: _KT_contra, default: _VT_co, / # type: ignore[misc] # pyright: ignore[reportGeneralTypeIssues] # Covariant type as parameter
190190
) -> _VT_co: ...
191191
@overload

0 commit comments

Comments
 (0)