We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c7a4fd commit d1d2668Copy full SHA for d1d2668
src/aleph_client/commands/instance/__init__.py
@@ -213,9 +213,7 @@ async def create(
213
)
214
215
async with AuthenticatedAlephHttpClient(account=account) as client:
216
- vouchers = await client.voucher.fetch_vouchers_by_chain(
217
- address=address, chain=Chain(account.CHAIN)
218
- )
+ vouchers = await client.voucher.fetch_vouchers_by_chain(address=address, chain=Chain(account.CHAIN))
219
if len(vouchers) == 0:
220
console.print("No NFT vouchers find on this account")
221
raise typer.Exit(code=1)
0 commit comments