Skip to content

Commit

Permalink
Move the doc annotation to not include the function body
Browse files Browse the repository at this point in the history
  • Loading branch information
xbtmatt committed Aug 5, 2023
1 parent fe110ee commit 7796294
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ecosystem/python/sdk/aptos_sdk/aptos_token_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -520,8 +520,8 @@ async def mint_soul_bound_token(
# :!:>transfer_token
async def transfer_token(
self, owner: Account, token: AccountAddress, to: AccountAddress
) -> str:
return await self.client.transfer_object(owner, token, to) # <:!:transfer_token
) -> str: # <:!:transfer_token
return await self.client.transfer_object(owner, token, to)

async def burn_token(self, creator: Account, token: AccountAddress) -> str:
payload = EntryFunction.natural(
Expand Down

0 comments on commit 7796294

Please sign in to comment.