Skip to content

Commit 9d8ced9

Browse files
authored
Related_card_transactions return an empty list (#110)
1 parent 85fdaa4 commit 9d8ced9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cuenca/resources/card_transactions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class CardTransaction(Transaction):
2828
@property # type: ignore
2929
def related_card_transactions(self) -> Optional[List['CardTransaction']]:
3030
if not self.related_card_transaction_uris:
31-
return None
31+
return []
3232
return cast(
3333
List['CardTransaction'],
3434
retrieve_uris(self.related_card_transaction_uris),

0 commit comments

Comments
 (0)