Skip to content

Commit

Permalink
feat: I was added the option of value quantity be none
Browse files Browse the repository at this point in the history
  • Loading branch information
calenzo committed Mar 18, 2023
1 parent 680bb03 commit 9db6a1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/balance_service/interfaces/nubank.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def get_balance(self):
return self.bank_service.get_balance()
return 0

def get_transactions(self, quantity: int):
def get_transactions(self, quantity: None):
if self.has_certificate:
transactions = self.bank_service.get_transactions()
return transactions[:quantity]
Expand Down

0 comments on commit 9db6a1c

Please sign in to comment.