Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes the type signature of retry_exception_types.
code was failing previously when passed in a list of Exception types for `retry_exception_types`. the type `list[Exception]` indicates a list of Exception *objects*, while `list[type[Exception]]` indicates a list of Exception types. https://docs.python.org/3/library/typing.html#the-type-of-class-objects PiperOrigin-RevId: 590455167
- Loading branch information