Skip to content

Commit

Permalink
Merge pull request #2787 from python-trio/fix-multierror-typing
Browse files Browse the repository at this point in the history
Attempt to fix multierror typing
  • Loading branch information
richardsheridan committed Sep 3, 2023
2 parents 4d19399 + 8f2d55f commit 2cd5a6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion trio/_core/_multierror.py
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ def __str__(self) -> str:
def __repr__(self) -> str:
return f"<MultiError: {self}>"

@overload
@overload # type: ignore[override] # 'Exception' != '_ExceptionT'
def derive(self, excs: Sequence[Exception], /) -> NonBaseMultiError:
...

Expand Down

0 comments on commit 2cd5a6f

Please sign in to comment.