HENNGE / aiodynamo

Asynchronous, fast, pythonic DynamoDB Client
https://aiodynamo.readthedocs.io/
Other
69 stars 20 forks source link

fix a type mismatch for TransactionCanceled #184

Closed aisk closed 2 weeks ago

aisk commented 1 month ago

The cancellation_reasons have a mismatched type when initializing, and this change fixes it. Additionally, it has been changed to use Optional instead of Union[T, None] because they are equivalent but Optional has a shorter name.