Closed Lperreau closed 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! :)
Hi, feel free to submit a pull request to fix this typo error. Thanks for your support and contribution.
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! :)