Skip to content

Commit

Permalink
fix bound on BaseExceptionGroupSelf
Browse files Browse the repository at this point in the history
  • Loading branch information
jakkdl committed Dec 24, 2023
1 parent 9dc2d0e commit 7843d4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/exceptiongroup/_exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
_ExceptionT = TypeVar("_ExceptionT", bound=Exception)
# using typing.Self would require a typing_extensions dependency on py<3.11
_ExceptionGroupSelf = TypeVar("_ExceptionGroupSelf", bound="ExceptionGroup")
_BaseExceptionGroupSelf = TypeVar("_BaseExceptionGroupSelf", bound="ExceptionGroup")
_BaseExceptionGroupSelf = TypeVar("_BaseExceptionGroupSelf", bound="BaseExceptionGroup")


def check_direct_subclass(
Expand Down

0 comments on commit 7843d4e

Please sign in to comment.