Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
xbtmatt committed Aug 10, 2023
1 parent 769e0f1 commit b15dc1e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ecosystem/python/sdk/aptos_sdk/aptos_token_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -521,7 +521,7 @@ async def mint_soul_bound_token(
async def transfer_token(
self, owner: Account, token: AccountAddress, to: AccountAddress
) -> str:
return await self.client.transfer_object(owner, token, to) # <:!:transfer_token
return await self.client.transfer_object(owner, token, to) # <:!:transfer_token

async def burn_token(self, creator: Account, token: AccountAddress) -> str:
payload = EntryFunction.natural(
Expand Down
2 changes: 1 addition & 1 deletion ecosystem/python/sdk/aptos_sdk/async_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -751,7 +751,7 @@ async def get_collection(
"0x3::token::CollectionData",
collection_name,
)

async def transfer_object(
self, owner: Account, object: AccountAddress, to: AccountAddress
) -> str:
Expand Down
2 changes: 1 addition & 1 deletion ecosystem/python/sdk/examples/aptos-token.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

from aptos_sdk.account import Account
from aptos_sdk.account_address import AccountAddress
from aptos_sdk.aptos_token_client import AptosTokenClient, Property, PropertyMap, Object
from aptos_sdk.aptos_token_client import AptosTokenClient, Object, Property, PropertyMap
from aptos_sdk.async_client import FaucetClient, RestClient

from .common import FAUCET_URL, NODE_URL
Expand Down

0 comments on commit b15dc1e

Please sign in to comment.