dmachard / python-creditagricole-particuliers

Client Python, à destination des particuliers, souhaitant récupérer ses opérations bancaires stockées par le Crédit Agricole.
https://pypi.org/project/creditagricole-particuliers/
MIT License
39 stars 13 forks source link

'Account' object has no attribute 'operations' #2

Closed Lperreau closed 3 years ago

Lperreau commented 3 years ago

Please, replace:

operations = main_account.operations(count=30) for op in operations: print(op)

by

operations = main_account.get_operations(count=30) for op in operations: print(op)

Thank you! :)

dmachard commented 3 years ago

Hi, feel free to submit a pull request to fix this typo error. Thanks for your support and contribution.