We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b8237d2 commit ab79ebcCopy full SHA for ab79ebc
cuenca/resources/cards.py
@@ -101,7 +101,9 @@ def update(
101
:param session:
102
:return: Updated card object
103
"""
104
- req = CardUpdateRequest(status=status, pin_block=pin_block, is_dynamic_cvv=is_dynamic_cvv)
+ req = CardUpdateRequest(
105
+ status=status, pin_block=pin_block, is_dynamic_cvv=is_dynamic_cvv
106
+ )
107
resp = cls._update(card_id, session=session, **req.dict())
108
return cast('Card', resp)
109
0 commit comments