Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update python generate_addresses to be more Pythonic #26

Merged
merged 8 commits into from
Apr 3, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Apply suggestions from code review
  • Loading branch information
Dr-Electron committed Mar 31, 2023
commit 386b0a79c2138f4c5871188cb73f2161063767bf
2 changes: 1 addition & 1 deletion sdk/src/client/bindings/python/examples/ledger_nano.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@
# Generate public address with custom account index and range.
address = client.generate_addresses(secret_manager, account_index=0, start=0, end=1)

print(f'Address: {address[0]}')
print(f'Address: {address[0]}')
2 changes: 1 addition & 1 deletion sdk/src/client/bindings/python/examples/stronghold.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
# Generate public address with custom account index and range.
address = client.generate_addresses(secret_manager, account_index=0, start=0, end=1)

print(f'Address: {address[0]}')
print(f'Address: {address[0]}')